diff --git a/README.md b/README.md index 2cc3d50..7811f2f 100644 --- a/README.md +++ b/README.md @@ -5,17 +5,18 @@ AWS Kubernetes is a Kubernetes cluster deployed using [Kubeadm](https://kubernet - [AWS Kubernetes](#aws-kubernetes) - - [Updates](#updates) - - [Prerequisites and dependencies](#prerequisites-and-dependencies) - - [Including the module](#including-the-module) - - [Addons](#addons) - - [Custom addons](#custom-addons) - - [Tagging](#tagging) + - [Updates](#updates) + - [Prerequisites and dependencies](#prerequisites-and-dependencies) + - [Including the module](#including-the-module) + - [Addons](#addons) + - [Custom addons](#custom-addons) + - [Tagging](#tagging) ## Updates +* *22.1.2018:* Update to Kubernetes 1.9.2, Ingres 0.10.0 and Dashboard 1.8.2 * *6.1.2018:* Update to Kubernetes 1.9.1 * *17.12.2017:* Update to Kubernetes 1.9.0, update Dashboard, Ingress, Autoscaler and Heapster dependencies * *8.12.2017:* Update to Kubernetes 1.8.5 diff --git a/addons/dashboard.yaml b/addons/dashboard.yaml index f59c4f7..1f1e822 100644 --- a/addons/dashboard.yaml +++ b/addons/dashboard.yaml @@ -41,7 +41,7 @@ spec: spec: containers: - name: kubernetes-dashboard - image: gcr.io/google_containers/kubernetes-dashboard-amd64:v1.8.1 + image: gcr.io/google_containers/kubernetes-dashboard-amd64:v1.8.2 ports: - containerPort: 8443 protocol: TCP diff --git a/addons/ingress.yaml b/addons/ingress.yaml index d518adb..d13d338 100644 --- a/addons/ingress.yaml +++ b/addons/ingress.yaml @@ -180,7 +180,7 @@ spec: terminationGracePeriodSeconds: 60 serviceAccountName: ingress containers: - - image: quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.9.0 + - image: quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.10.0 name: ingress-nginx imagePullPolicy: Always ports: diff --git a/scripts/init-aws-kubernetes-master.sh b/scripts/init-aws-kubernetes-master.sh index a5612b1..7378fae 100755 --- a/scripts/init-aws-kubernetes-master.sh +++ b/scripts/init-aws-kubernetes-master.sh @@ -14,7 +14,7 @@ export ASG_MAX_NODES="${asg_max_nodes}" export AWS_REGION=${aws_region} export AWS_SUBNETS="${aws_subnets}" export ADDONS="${addons}" -export KUBERNETES_VERSION="1.9.1" +export KUBERNETES_VERSION="1.9.2" # Set this only after setting the defaults set -o nounset diff --git a/scripts/init-aws-kubernetes-node.sh b/scripts/init-aws-kubernetes-node.sh index 4a43727..8c1152f 100755 --- a/scripts/init-aws-kubernetes-node.sh +++ b/scripts/init-aws-kubernetes-node.sh @@ -6,7 +6,7 @@ set -o pipefail export KUBEADM_TOKEN=${kubeadm_token} export DNS_NAME=${dns_name} -export KUBERNETES_VERSION="1.9.1" +export KUBERNETES_VERSION="1.9.2" # Set this only after setting the defaults set -o nounset