[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
This commit is contained in:
Andreas Bucksteeg
2020-09-18 12:31:07 +02:00
committed by GitHub
parent 3d14929547
commit 8bfacfaa23
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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 '<pending>':
$ 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 }}