Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/pmm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: pmm
description: A Helm chart for Percona Monitoring and Management (PMM)
type: application
version: 1.5.1
version: 1.6.0
appVersion: "3.6.0"
home: https://github.com/percona/pmm
maintainers:
Expand Down
4 changes: 4 additions & 0 deletions charts/pmm/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.initContainers }}
initContainers:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}

Expand Down
5 changes: 4 additions & 1 deletion charts/pmm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ upgrade:
## Options: "rolling" (default), "recreate"
## Use "recreate" if you encounter StatefulSet upgrade conflicts
strategy: "rolling"

## @param upgrade.force Force upgrade by recreating StatefulSet if needed
## This will cause a brief downtime but ensures upgrade compatibility
## Set to true only if you encounter StatefulSet field conflicts
Expand Down Expand Up @@ -326,3 +326,6 @@ extraVolumes:
extraVolumeMounts:
- name: pmm-config
mountPath: /usr/local/percona/pmm/config
## @param initContainers Optionally specify extra list of init containers
##
initContainers: []