From 662f6d95a1461d05ad6605599f4f895b5a90f7a1 Mon Sep 17 00:00:00 2001 From: Yao Le Date: Thu, 30 Apr 2020 22:40:20 +0800 Subject: 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 Change-Id: I537f6395e5d05d8b72411dd1e0789e19972f1947 --- .../containerized/inventory/group_vars/k8s-cluster.yml | 4 +++- .../vagrant/inventory/group_vars/k8s-cluster.yml | 14 +++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) (limited to 'kud/hosting_providers') diff --git a/kud/hosting_providers/containerized/inventory/group_vars/k8s-cluster.yml b/kud/hosting_providers/containerized/inventory/group_vars/k8s-cluster.yml index 5ba115b6..5560dd97 100644 --- a/kud/hosting_providers/containerized/inventory/group_vars/k8s-cluster.yml +++ b/kud/hosting_providers/containerized/inventory/group_vars/k8s-cluster.yml @@ -14,6 +14,8 @@ # Editing those values will almost surely break something. system_namespace: kube-system +docker_version: 'latest' + # Logging directory (sysvinit systems) kube_log_dir: "/var/log/kubernetes" @@ -48,7 +50,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 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 -- cgit 1.2.3-korg