From 98c8c84f9e28ffd96d1cbbbdd97842aff0ec1dfa Mon Sep 17 00:00:00 2001 From: Chad Kittel Date: Mon, 23 Aug 2021 14:44:20 -0500 Subject: [PATCH] Update nginx ingress controller from 0.44 to 0.49 (#35) --- cluster-manifests/ingress-nginx/deployment.yaml | 2 +- docs/deploy/10-pre-bootstrap.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cluster-manifests/ingress-nginx/deployment.yaml b/cluster-manifests/ingress-nginx/deployment.yaml index 59878e25..ef4a6660 100644 --- a/cluster-manifests/ingress-nginx/deployment.yaml +++ b/cluster-manifests/ingress-nginx/deployment.yaml @@ -286,7 +286,7 @@ spec: dnsPolicy: ClusterFirst containers: - name: controller - image: YOUR_ACR.azurecr.io/live/ingress-nginx/controller:v0.44.0 + image: YOUR_ACR.azurecr.io/live/ingress-nginx/controller:v0.49.0 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/docs/deploy/10-pre-bootstrap.md b/docs/deploy/10-pre-bootstrap.md index 71e613a5..d51acd1f 100644 --- a/docs/deploy/10-pre-bootstrap.md +++ b/docs/deploy/10-pre-bootstrap.md @@ -50,7 +50,7 @@ Using a security agent that is container-aware and can operate from within the c az acr import --source docker.io/falcosecurity/falco:0.27.0 -t quarantine/falcosecurity/falco:0.27.0 -n $ACR_NAME_QUARANTINE && \ az acr import --source docker.io/library/busybox:1.33.0 -t quarantine/library/busybox:1.33.0 -n $ACR_NAME_QUARANTINE && \ az acr import --source docker.io/weaveworks/kured:1.6.1 -t quarantine/weaveworks/kured:1.6.1 -n $ACR_NAME_QUARANTINE && \ - az acr import --source k8s.gcr.io/ingress-nginx/controller:v0.44.0 -t quarantine/ingress-nginx/controller:v0.44.0 -n $ACR_NAME_QUARANTINE && \ + az acr import --source k8s.gcr.io/ingress-nginx/controller:v0.49.0 -t quarantine/ingress-nginx/controller:v0.49.0 -n $ACR_NAME_QUARANTINE && \ az acr import --source docker.io/jettech/kube-webhook-certgen:v1.5.1 -t quarantine/jettech/kube-webhook-certgen:v1.5.1 -n $ACR_NAME_QUARANTINE ``` @@ -86,7 +86,7 @@ Using a security agent that is container-aware and can operate from within the c az acr import --source quarantine/falcosecurity/falco:0.27.0 -r $ACR_NAME_QUARANTINE -t live/falcosecurity/falco:0.27.0 -n $ACR_NAME && \ az acr import --source quarantine/library/busybox:1.33.0 -r $ACR_NAME_QUARANTINE -t live/library/busybox:1.33.0 -n $ACR_NAME && \ az acr import --source quarantine/weaveworks/kured:1.6.1 -r $ACR_NAME_QUARANTINE -t live/weaveworks/kured:1.6.1 -n $ACR_NAME && \ - az acr import --source quarantine/ingress-nginx/controller:v0.44.0 -r $ACR_NAME_QUARANTINE -t live/ingress-nginx/controller:v0.44.0 -n $ACR_NAME && \ + az acr import --source quarantine/ingress-nginx/controller:v0.49.0 -r $ACR_NAME_QUARANTINE -t live/ingress-nginx/controller:v0.49.0 -n $ACR_NAME && \ az acr import --source quarantine/jettech/kube-webhook-certgen:v1.5.1 -r $ACR_NAME_QUARANTINE -t live/jettech/kube-webhook-certgen:v1.5.1 -n $ACR_NAME ```