mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/consul] Add podAnnotations (#17487)
* Add: podAnnotations Signed-off-by: Daniel Koopmans <daniel.koopmans@gmail.com> * Bump stable/consul version 3.8.2 Signed-off-by: Daniel Koopmans <daniel.koopmans@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
bb93182a43
commit
9645b22e0a
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
name: consul
|
||||
home: https://github.com/hashicorp/consul
|
||||
version: 3.9.0
|
||||
version: 3.9.1
|
||||
appVersion: 1.5.3
|
||||
description: Highly available and distributed service discovery and key-value store
|
||||
designed with support for the modern data center to make distributed systems and
|
||||
|
||||
@@ -55,6 +55,7 @@ The following table lists the configurable parameters of the consul chart and th
|
||||
| `affinity` | Consul affinity settings | `see values.yaml` |
|
||||
| `nodeSelector` | Node labels for pod assignment | `{}` |
|
||||
| `tolerations` | Tolerations for pod assignment | `[]` |
|
||||
| `podAnnotations` | Annotations for pod | `{}` |
|
||||
| `maxUnavailable` | Pod disruption Budget maxUnavailable | `1` |
|
||||
| `ui.enabled` | Enable Consul Web UI | `true` |
|
||||
| `uiIngress.enabled` | Create Ingress for Consul Web UI | `false` |
|
||||
|
||||
@@ -22,6 +22,10 @@ spec:
|
||||
template:
|
||||
metadata:
|
||||
name: "{{ template "consul.fullname" . }}"
|
||||
{{- if .Values.podAnnotations }}
|
||||
annotations:
|
||||
{{ toYaml .Values.podAnnotations | indent 8 }}
|
||||
{{- end }}
|
||||
labels:
|
||||
heritage: {{ .Release.Service | quote }}
|
||||
release: {{ .Release.Name | quote }}
|
||||
|
||||
@@ -148,6 +148,7 @@ test:
|
||||
nodeSelector: {}
|
||||
tolerations: []
|
||||
additionalLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
# Lifecycle for StatefulSet
|
||||
# lifecycle:
|
||||
|
||||
Reference in New Issue
Block a user