Skip to content

Commit

Permalink
PMM-7 update pmm version 2.43.2 (#397)
Browse files Browse the repository at this point in the history
* PMM-7 Fix PMM Helm chart caused by recent changes

* PMM-7 Update PMM version to 2.43.2

* PMM-7 Don't mount secret if secret name isn't passed

* PMM-7 Fix linter

---------

Co-authored-by: Alex Demidoff <[email protected]>
  • Loading branch information
BupycHuk and ademidoff authored Oct 31, 2024
1 parent 9f2660a commit 1ddece1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/pmm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: pmm
description: A Helm chart for Percona Monitoring and Management (PMM)
type: application
version: 1.3.18
appVersion: "2.43.1"
version: 1.3.19
appVersion: "2.43.2"
home: https://github.com/percona/pmm
maintainers:
- name: tplavcic
Expand Down
2 changes: 1 addition & 1 deletion charts/pmm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ It removes all of the resources associated with the last release of the chart as
| ------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |----------------------|
| `image.repository` | PMM image repository | `percona/pmm-server` |
| `image.pullPolicy` | PMM image pull policy | `IfNotPresent` |
| `image.tag` | PMM image tag (immutable tags are recommended) | `2.43.1` |
| `image.tag` | PMM image tag (immutable tags are recommended) | `2.43.2` |
| `image.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `pmmEnv.DISABLE_UPDATES` | Disables a periodic check for new PMM versions as well as ability to apply upgrades using the UI (need to be disabled in k8s environment as updates rolled with helm/container update) | `1` |
| `pmmResources` | optional [Resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) requested for [PMM container](https://docs.percona.com/percona-monitoring-and-management/setting-up/server/index.html#set-up-pmm-server) | `{}` |
Expand Down
2 changes: 1 addition & 1 deletion charts/pmm/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ spec:
- configMapRef:
name: {{ include "pmm.fullname" . }}
optional: true
{{ if not .Values.secret.create }}
{{ if and (not .Values.secret.create) .Values.secret.name }}
- secretRef:
name: {{ .Values.secret.name }}
{{ end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/pmm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ image:
repository: percona/pmm-server
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "2.43.1"
tag: "2.43.2"
imagePullSecrets: []

## PMM environment variables
Expand Down

0 comments on commit 1ddece1

Please sign in to comment.