From 4efe5495020ec14ae07185e7fbf7bb00a994fcba Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Sun, 7 Apr 2019 20:25:17 -0400 Subject: [PATCH] Update yaml files to 0.24.0 [skip-ci] (#3975) --- deploy/mandatory.yaml | 2 +- deploy/with-rbac.yaml | 2 +- docs/troubleshooting.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/mandatory.yaml b/deploy/mandatory.yaml index 90d102cb9..732779617 100644 --- a/deploy/mandatory.yaml +++ b/deploy/mandatory.yaml @@ -211,7 +211,7 @@ spec: serviceAccountName: nginx-ingress-serviceaccount containers: - name: nginx-ingress-controller - image: quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.23.0 + image: quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.24.0 args: - /nginx-ingress-controller - --configmap=$(POD_NAMESPACE)/nginx-configuration diff --git a/deploy/with-rbac.yaml b/deploy/with-rbac.yaml index e6bbb193f..0d2188c36 100644 --- a/deploy/with-rbac.yaml +++ b/deploy/with-rbac.yaml @@ -24,7 +24,7 @@ spec: serviceAccountName: nginx-ingress-serviceaccount containers: - name: nginx-ingress-controller - image: quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.23.0 + image: quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.24.0 args: - /nginx-ingress-controller - --configmap=$(POD_NAMESPACE)/nginx-configuration diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index fea232a66..bedca5f41 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -99,7 +99,7 @@ Install [krew](https://github.com/GoogleContainerTools/krew), then run ```console $ ( set -x; cd "$(mktemp -d)" && - curl -fsSLO "https://github.com/kubernetes/ingress-nginx/releases/download/nginx-0.23.0/{ingress-nginx.yaml,kubectl-ingress_nginx-$(uname | tr '[:upper:]' '[:lower:]')-amd64.tar.gz}" && + curl -fsSLO "https://github.com/kubernetes/ingress-nginx/releases/download/nginx-0.24.0/{ingress-nginx.yaml,kubectl-ingress_nginx-$(uname | tr '[:upper:]' '[:lower:]')-amd64.tar.gz}" && kubectl krew install \ --manifest=ingress-nginx.yaml --archive=kubectl-ingress_nginx-$(uname | tr '[:upper:]' '[:lower:]')-amd64.tar.gz )