Current state

This commit is contained in:
Moritz Graf 2020-02-18 19:18:20 +01:00
parent ee88acc002
commit e0b4914f9d
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.vagrant

View File

@ -2,7 +2,7 @@
# use virtualenv to install all python requirements # use virtualenv to install all python requirements
VENVDIR=venv VENVDIR=venv
virtualenv --python=/usr/local/bin/python3 $VENVDIR virtualenv --python=/usr/bin/python3.7 $VENVDIR
source $VENVDIR/bin/activate source $VENVDIR/bin/activate
pip install -r kubespray/requirements.txt pip install -r kubespray/requirements.txt
@ -24,6 +24,7 @@ cat << EOF > kubespray/vagrant/config.rb
\$network_plugin = "flannel" \$network_plugin = "flannel"
\$inventory = "$INV" \$inventory = "$INV"
\$shared_folders = { 'temp/docker_rpms' => "/var/cache/yum/x86_64/7/docker-ce/packages" } \$shared_folders = { 'temp/docker_rpms' => "/var/cache/yum/x86_64/7/docker-ce/packages" }
\$kube_node_instances_with_disks_number = 0
EOF EOF
# make the rpm cache # make the rpm cache