diff options
author | Huang Haibin <haibin.huang@intel.com> | 2020-06-01 02:12:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-06-01 02:12:39 +0000 |
commit | 7959bd4c6fd403cf4ba58bf572b1259267b3c76d (patch) | |
tree | e9fab6070d612a7c703d7eaf056f14818b466a20 /kud/hosting_providers/vagrant | |
parent | 1481548c635f95d245138aba7ac710668e25bfe1 (diff) | |
parent | 662f6d95a1461d05ad6605599f4f895b5a90f7a1 (diff) |
Merge "Update the Kubernetes Version to 1.16"
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 |