mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/ambassador] Added sidecarContainers parameter (#17579)
* Added sidecarContainers parameter Signed-off-by: Pieter Vogelaar <pieter@pietervogelaar.nl> * Bumped version from 4.1.0 to 4.2.0 Signed-off-by: Pieter Vogelaar <pieter@pietervogelaar.nl>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
031bb2708d
commit
f5bcdc1c4e
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: 0.81.0
|
||||
description: A Helm chart for Datawire Ambassador
|
||||
name: ambassador
|
||||
version: 4.1.0
|
||||
version: 4.2.0
|
||||
icon: https://www.getambassador.io/images/logo.png
|
||||
home: https://www.getambassador.io/
|
||||
sources:
|
||||
|
||||
@@ -76,6 +76,7 @@ The following tables lists the configurable parameters of the Ambassador chart a
|
||||
| `resources` | CPU/memory resource requests/limits | `{}` |
|
||||
| `securityContext` | Set security context for pod | `{ "runAsUser": "8888" }` |
|
||||
| `initContainers` | Containers used to initialize context for pods | `[]` |
|
||||
| `sidecarContainers` | Containers that share the pod context | `[]` |
|
||||
| `service.annotations` | Annotations to apply to Ambassador service | `""` |
|
||||
| `service.externalTrafficPolicy` | Sets the external traffic policy for the service | `""` |
|
||||
| `service.ports` | List of ports Ambassador is listening on | `[{"name": "http","port": 80,"targetPort": 8080},{"name": "https","port": 443,"targetPort": 8443}]` |
|
||||
|
||||
@@ -222,6 +222,9 @@ spec:
|
||||
resources:
|
||||
{{- toYaml .Values.pro.resources | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- with .Values.sidecarContainers }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
|
||||
@@ -149,6 +149,8 @@ serviceAccount:
|
||||
|
||||
initContainers: []
|
||||
|
||||
sidecarContainers: []
|
||||
|
||||
volumes: []
|
||||
|
||||
volumeMounts: []
|
||||
|
||||
Reference in New Issue
Block a user