diff --git a/bitnami/contour/Chart.yaml b/bitnami/contour/Chart.yaml index 6274480bf9..a67ba3721b 100644 --- a/bitnami/contour/Chart.yaml +++ b/bitnami/contour/Chart.yaml @@ -25,4 +25,4 @@ sources: - https://github.com/envoyproxy/envoy - https://github.com/bitnami/containers/tree/main/bitnami/contour - https://projectcontour.io -version: 10.1.4 +version: 10.1.5 diff --git a/bitnami/contour/README.md b/bitnami/contour/README.md index c32c8daa0b..4d7b61e258 100644 --- a/bitnami/contour/README.md +++ b/bitnami/contour/README.md @@ -267,6 +267,7 @@ $ helm uninstall my-release | `envoy.customStartupProbe` | Override default startup probe | `{}` | | `envoy.terminationGracePeriodSeconds` | Envoy termination grace period in seconds | `300` | | `envoy.logLevel` | Envoy log level | `info` | +| `envoy.service.name` | envoy service name | `""` | | `envoy.service.targetPorts` | Map the controller service HTTP/HTTPS port | `{}` | | `envoy.service.type` | Type of Envoy service to create | `LoadBalancer` | | `envoy.service.externalTrafficPolicy` | Envoy Service external cluster policy. If `envoy.service.type` is NodePort or LoadBalancer | `Local` | diff --git a/bitnami/contour/templates/envoy/service.yaml b/bitnami/contour/templates/envoy/service.yaml index c2f8b27527..0692d39ba8 100644 --- a/bitnami/contour/templates/envoy/service.yaml +++ b/bitnami/contour/templates/envoy/service.yaml @@ -2,7 +2,7 @@ apiVersion: v1 kind: Service metadata: - name: {{ printf "%s-envoy" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }} + name: {{ default (printf "%s-envoy" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-") .Values.envoy.service.name }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" . | nindent 4 }} app.kubernetes.io/component: envoy diff --git a/bitnami/contour/values.yaml b/bitnami/contour/values.yaml index 992b364641..b5923b970e 100644 --- a/bitnami/contour/values.yaml +++ b/bitnami/contour/values.yaml @@ -742,6 +742,9 @@ envoy: ## Envoy Service properties ## service: + ## @param envoy.service.name envoy service name + ## + name: "" ## @param envoy.service.targetPorts [object] Map the controller service HTTP/HTTPS port ## targetPorts: