From 8bfacfaa23af65ed2cbcfeba870c9b15f70aeb4e Mon Sep 17 00:00:00 2001 From: Andreas Bucksteeg Date: Fri, 18 Sep 2020 12:31:07 +0200 Subject: [PATCH] [bitnami/contour]: Fix installation notes to display correct kubectl commands (#3706) * fix: using correct service name to output external ip of Contour ingress * fix: using correct service name to output external ip of Contour ingres * Bump chart version --- bitnami/contour/Chart.yaml | 2 +- bitnami/contour/templates/NOTES.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/contour/Chart.yaml b/bitnami/contour/Chart.yaml index 0e5f2e2f8..79c14e5c6 100644 --- a/bitnami/contour/Chart.yaml +++ b/bitnami/contour/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: contour description: Contour Ingress controller for Kubernetes -version: 2.1.0 +version: 2.1.1 appVersion: 1.8.1 keywords: - ingress diff --git a/bitnami/contour/templates/NOTES.txt b/bitnami/contour/templates/NOTES.txt index 2572eb9b0..b71c5aecf 100644 --- a/bitnami/contour/templates/NOTES.txt +++ b/bitnami/contour/templates/NOTES.txt @@ -5,11 +5,11 @@ You can watch the status by running: - $ kubectl get svc {{ include "common.names.fullname" . }} --namespace {{ .Release.Namespace }} -w + $ kubectl get svc {{ include "common.names.fullname" . }}-envoy --namespace {{ .Release.Namespace }} -w Once 'EXTERNAL-IP' is no longer '': - $ kubectl describe svc {{ include "common.names.fullname" . }} --namespace {{ .Release.Namespace }} | grep Ingress | awk '{print $3}' + $ kubectl describe svc {{ include "common.names.fullname" . }}-envoy --namespace {{ .Release.Namespace }} | grep Ingress | awk '{print $3}' 2. Configure DNS records corresponding to Kubernetes ingress resources to point to the load balancer IP/hostname found in step 1 {{- end }}