diff options
author | Yao Le <le.yao@intel.com> | 2020-04-30 22:40:20 +0800 |
---|---|---|
committer | Yao Le <le.yao@intel.com> | 2020-05-27 22:10:04 +0800 |
commit | 662f6d95a1461d05ad6605599f4f895b5a90f7a1 (patch) | |
tree | 853317a2116725667b8cd6c8fc4d9cb0841139ca /kud/hosting_providers/vagrant | |
parent | 56b6d5b88e4c5c8db7a6fbc8da113a7a205d44ae (diff) |
Update the Kubernetes Version to 1.16
Update kubespray to 2.12 to deploy Kubernetes 1.16
Issue-ID: MULTICLOUD-1063
Signed-off-by: Yao Le <le.yao@intel.com>
Change-Id: I537f6395e5d05d8b72411dd1e0789e19972f1947
Diffstat (limited to 'kud/hosting_providers/vagrant')
-rw-r--r-- | kud/hosting_providers/vagrant/inventory/group_vars/k8s-cluster.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kud/hosting_providers/vagrant/inventory/group_vars/k8s-cluster.yml b/kud/hosting_providers/vagrant/inventory/group_vars/k8s-cluster.yml index 18339773..30fd5c0b 100644 --- a/kud/hosting_providers/vagrant/inventory/group_vars/k8s-cluster.yml +++ b/kud/hosting_providers/vagrant/inventory/group_vars/k8s-cluster.yml @@ -51,7 +51,7 @@ local_volumes_enabled: true local_volume_provisioner_enabled: true ## Change this to use another Kubernetes version, e.g. a current beta release -kube_version: v1.14.3 +kube_version: v1.16.9 # Helm deployment helm_enabled: true @@ -63,17 +63,17 @@ helm_enabled: true #kube_proxy_mode: ipvs # Download container images only once then push to cluster nodes in batches -download_run_once: true +download_run_once: True # Where the binaries will be downloaded. # Note: ensure that you've enough disk space (about 1G) local_release_dir: "/tmp/releases" -# Makes the installer node a delegate for pushing images while running -# the deployment with ansible. This maybe the case if cluster nodes -# cannot access each over via ssh or you want to use local docker -# images as a cache for multiple clusters. -download_localhost: true +#Set download_localhost: True to make localhost the download delegate. This can be useful if +#cluster nodes cannot access external addresses. To use this requires that docker is installed +#and running on the ansible master and that the current user is either in the docker group or +#can do passwordless sudo, to be able to access docker. +download_localhost: True # Subnet for cluster IPs kube_service_addresses: 10.244.0.0/18 |