mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/phpmyadmin] Add custom podLabels to deployment.yaml (#18228)
* Add custom podLabels to deployment.yaml Signed-off-by: verymahler <verymahler@users.noreply.github.com> * Bump stable/phpmyadmin Chart version to 4.0.1 Signed-off-by: verymahler <verymahler@users.noreply.github.com> * Add podLabels value to README Signed-off-by: verymahler <verymahler@users.noreply.github.com> * Add podLabels to default values.yaml Signed-off-by: verymahler <verymahler@users.noreply.github.com> * Upgrade to MINOR version instead of PATCH Signed-off-by: verymahler <verymahler@users.noreply.github.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
3738f35bea
commit
b9c6fd5ac8
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: phpmyadmin
|
||||
version: 4.0.0
|
||||
version: 4.1.0
|
||||
appVersion: 4.9.1
|
||||
description: phpMyAdmin is an mysql administration frontend
|
||||
keywords:
|
||||
|
||||
@@ -73,6 +73,7 @@ The following table lists the configurable parameters of the phpMyAdmin chart an
|
||||
| `nodeSelector` | Node labels for pod assignment | `{}` |
|
||||
| `tolerations` | List of node taints to tolerate | `[]` |
|
||||
| `affinity` | Map of node/pod affinities | `{}` |
|
||||
| `podLabels` | Pod labels | `{}` |
|
||||
| `podAnnotations` | Pod annotations | `{}` |
|
||||
| `metrics.enabled` | Start a side-car prometheus exporter | `false` |
|
||||
| `metrics.image.registry` | Apache exporter image registry | `docker.io` |
|
||||
|
||||
@@ -19,6 +19,9 @@ spec:
|
||||
app: {{ template "phpmyadmin.name" . }}
|
||||
chart: {{ template "phpmyadmin.chart" . }}
|
||||
release: {{ .Release.Name }}
|
||||
{{- if .Values.podLabels }}
|
||||
{{ toYaml .Values.podLabels | indent 8 }}
|
||||
{{- end }}
|
||||
{{- if or .Values.podAnnotations .Values.metrics.enabled }}
|
||||
annotations:
|
||||
{{- if .Values.podAnnotations }}
|
||||
|
||||
@@ -118,6 +118,9 @@ tolerations: []
|
||||
##
|
||||
affinity: {}
|
||||
|
||||
## Pod labels
|
||||
podLabels: {}
|
||||
|
||||
## Pod annotations
|
||||
podAnnotations: {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user