Files
charts/bitnami/contour/templates/NOTES.txt
izturn 98a7f7ed4d [bitnami/contour] Adjust the naming style for resource (#11182)
* fix the legnth overflow for resource name

Signed-off-by: Gang Liu <gang.liu@daocloud.io>

* more resources renaing

Signed-off-by: Gang Liu <gang.liu@daocloud.io>
2022-07-18 15:26:48 +02:00

41 lines
1.8 KiB
Plaintext

CHART NAME: {{ .Chart.Name }}
CHART VERSION: {{ .Chart.Version }}
APP VERSION: {{ .Chart.AppVersion }}
** Please be patient while the chart is being deployed **
{{- if eq .Values.envoy.service.type "LoadBalancer" }}
1. Get Contours's load balancer IP/hostname:
NOTE: It may take a few minutes for this to become available.
You can watch the status by running:
$ kubectl get svc {{ printf "%s-envoy" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }} --namespace {{ include "common.names.namespace" . }} -w
Once 'EXTERNAL-IP' is no longer '<pending>':
$ kubectl describe svc {{ printf "%s-envoy" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }} --namespace {{ include "common.names.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 }}
{{- if eq .Values.envoy.service.type "NodePort" }}
{{- if (and (not (empty .Values.envoy.service.nodePorts.https)) (not (empty .Values.envoy.service.nodePorts.http))) }}
1. Contour is listening on the following ports on the host machine:
http - {{ .Values.envoy.service.nodePorts.http }}
https - {{ .Values.envoy.service.nodePorts.https }}
{{- else }}
1. Contour has been started. You can find out the port numbers being used by Contour by running:
$ kubectl describe svc {{ include "common.names.fullname" . }} --namespace {{ include "common.names.namespace" . }}
{{- end }}
2. Configure DNS records corresponding to Kubernetes ingress resources to point to the NODE_IP/NODE_HOST
{{- end }}
{{- include "contour.validateValues" . }}
{{- include "common.warnings.rollingTag" .Values.contour.image }}
{{- include "common.warnings.rollingTag" .Values.envoy.image }}