From 48ba56142dab4271e46764c5e16980824af50d51 Mon Sep 17 00:00:00 2001 From: Justin Scott Date: Thu, 19 Sep 2019 10:59:04 -0700 Subject: [PATCH] Update ingress-nginx to v0.25.1 (#182) Signed-off-by: Justin Scott --- .../5-ingres-lb/overlays/nginx-0.25.1/kustomization.yaml | 4 ++++ clr-k8s-examples/create_stack.sh | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 clr-k8s-examples/5-ingres-lb/overlays/nginx-0.25.1/kustomization.yaml diff --git a/clr-k8s-examples/5-ingres-lb/overlays/nginx-0.25.1/kustomization.yaml b/clr-k8s-examples/5-ingres-lb/overlays/nginx-0.25.1/kustomization.yaml new file mode 100644 index 0000000..afbf3c7 --- /dev/null +++ b/clr-k8s-examples/5-ingres-lb/overlays/nginx-0.25.1/kustomization.yaml @@ -0,0 +1,4 @@ +resources: + - ingress-nginx/deploy/static/mandatory.yaml + - ingress-nginx/deploy/static/provider/baremetal/service-nodeport.yaml + diff --git a/clr-k8s-examples/create_stack.sh b/clr-k8s-examples/create_stack.sh index 77a2bc0..937c778 100755 --- a/clr-k8s-examples/create_stack.sh +++ b/clr-k8s-examples/create_stack.sh @@ -189,8 +189,9 @@ function dashboard() { kubectl apply -k "${DASHBOARD_DIR}/overlays/${DASHBOARD_VER}" } + function ingres() { - INGRES_VER=${1:-nginx-0.25.0} + INGRES_VER=${1:-nginx-0.25.1} INGRES_URL="https://github.com/kubernetes/ingress-nginx.git" INGRES_DIR="5-ingres-lb" get_repo "${INGRES_URL}" "${INGRES_DIR}/overlays/${INGRES_VER}"