Removing kube-proxy restart according to the new worker guide, bumping EKS provider version in example

This commit is contained in:
Igor Borodin
2018-06-21 12:54:15 +03:00
parent ee66e1df65
commit 77400e8949
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ terraform {
}
provider "aws" {
version = ">= 1.22.0"
version = ">= 1.24.0"
region = "${var.region}"
}

View File

@@ -24,7 +24,7 @@ sed -i s,CLIENT_CA_FILE,$CA_CERTIFICATE_FILE_PATH,g /etc/systemd/system/kubelet.
# start services
systemctl daemon-reload
systemctl restart kubelet kube-proxy
systemctl restart kubelet
# Allow user supplied userdata code
${additional_userdata}