[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:
Pieter Vogelaar
2019-10-02 02:09:07 -07:00
committed by Kubernetes Prow Robot
parent 031bb2708d
commit f5bcdc1c4e
4 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -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:
+1
View File
@@ -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 }}
+2
View File
@@ -149,6 +149,8 @@ serviceAccount:
initContainers: []
sidecarContainers: []
volumes: []
volumeMounts: []