Vagrant 使用

Vagrant

安装

1
2
brew cask install vagrant
brew cask install virtualbox

ubuntu 镜像下载地址

Ubuntu Cloud Images 18.04 LTS Daily Build

1
vagrant box add bionic-server-cloudimg-amd64-vagrant.box --name ubuntu/bionic64

Vagrantfile

1
2
3
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
end

管理

挂起

将当前的虚拟机挂起,以便下次恢复。

1
vagrant suspend

恢复

恢复虚拟机的上次状态。

1
vagrant resume

注意:我们每次挂起虚拟机后再重新启动它们的时候,看到的虚拟机中的时间依然是挂载时候的时间,这样将导致监控查看起来比较麻烦。因此请考虑先停机再重新启动虚拟机。

重启

清理虚拟机。

1
2
vagrant destroy
rm -rf .vagrant

###

应用

本地分布式开发环境搭建(使用Vagrant和Virtualbox)

https://github.com/ovwane/kubernetes-vagrant-centos-cluster.git

1
git clone https://github.com/ovwane/kubernetes-vagrant-centos-cluster.git

参考

ubuntu/bionic64

×

纯属好玩

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

文章目录
  1. 1. Vagrant
    1. 1.1. 安装
    2. 1.2. 管理
      1. 1.2.1. 挂起
      2. 1.2.2. 恢复
      3. 1.2.3. 重启
    3. 1.3. 应用
      1. 1.3.1. 本地分布式开发环境搭建(使用Vagrant和Virtualbox)
    4. 1.4. 参考
,