Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bo-Chun Chen
Terraform Openstack
Commits
02e63f80
Commit
02e63f80
authored
Jun 27, 2019
by
Ryan Randles Jones
Browse files
Delete Vagrantfile
parent
dfb4775f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Vagrantfile
deleted
100644 → 0
View file @
dfb4775f
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant
.
configure
(
"2"
)
do
|
config
|
config
.
ssh
.
username
=
'centos'
config
.
vm
.
allowed_synced_folder_types
=
[
:rsync
]
#config.ssh.private_key_path = "~/.ssh/id_rsa.pub"
#config.vm.synced_folder '.', '/vagrant', disabled: true, type: 'rsync'
config
.
vm
.
define
"ohpc"
do
|
ohpc
|
ohpc
.
ssh
.
host
=
'164.111.161.145'
ohpc
.
vm
.
hostname
=
"ohpc"
end
config
.
vm
.
define
"ood"
do
|
ood
|
ood
.
vm
.
box
=
"centos/7"
# version placeholder for selecting specific vagrant boxes
# used mainly for debugging and sanity checking
# leave commented to use the latest version in the local cache
#ood.vm.box_version = "1804.02"
ood
.
vm
.
hostname
=
"ood"
ood
.
vm
.
network
"private_network"
,
ip:
"10.1.1.254"
,
virtualbox__intnet:
"compute"
ood
.
vm
.
network
"forwarded_port"
,
guest:
80
,
host:
8080
,
auto_correct:
true
ood
.
vm
.
network
"forwarded_port"
,
guest:
443
,
host:
8443
,
auto_correct:
true
end
# define user's key and insecure default
# insecure default is required for initial provisioning
#config.ssh.private_key_path = ["~/.ssh/id_rsa", "~/.vagrant.d/insecure_private_key"]
# append user's key to vagrant config to avoid overwrite of existing authorized_keys
# https://stackoverflow.com/a/31153912/8928529
#config.vm.provision "ssh_pub_key", type: "shell" do |s|
# ssh_pub_key = File.readlines("#{Dir.home}/.ssh/id_rsa.pub").first.strip
# s.inline = <<-SHELL
# echo #{ssh_pub_key} >> /home/centos/.ssh/authorized_keys
# SHELL
#end
config
.
vm
.
provision
"shell"
,
inline:
<<-
SHELL
if [ -f /vagrant/localenv.sh ]; then
. /vagrant/localenv.sh
fi
hostnamectl set-hostname ohpc
yum install -y epel-release
yum install -y ansible git vim bash-completion
yum install -y NetworkManager
systemctl restart NetworkManager
nmcli con mod "Wired connection 1" connection.id "eth1"
ansible-playbook -c local -i /vagrant/CRI_XCBC/hosts -l `hostname` /vagrant/CRI_XCBC/site.yaml -b
SHELL
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment