mirror of
https://github.com/bitnami/charts.git
synced 2026-02-10 03:17:20 +08:00
48 lines
2.5 KiB
Plaintext
48 lines
2.5 KiB
Plaintext
CHART NAME: {{ .Chart.Name }}
|
|
CHART VERSION: {{ .Chart.Version }}
|
|
APP VERSION: {{ .Chart.AppVersion }}
|
|
|
|
⚠ WARNING: Since August 28th, 2025, only a limited subset of images/charts are available for free.
|
|
Subscribe to Bitnami Secure Images to receive continued support and security updates.
|
|
More info at https://bitnami.com and https://github.com/bitnami/containers/issues/83267
|
|
|
|
** 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 }}
|
|
{{- include "common.warnings.resources" (dict "sections" (list "contour" "defaultBackend" "envoy" "envoy.shutdownManager") "context" $) }}
|
|
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.contour.image .Values.envoy.image .Values.defaultBackend.image) "context" $) }}
|
|
{{- include "common.errors.insecureImages" (dict "images" (list .Values.contour.image .Values.envoy.image .Values.defaultBackend.image) "context" $) }}
|