Skip to content

Commit

Permalink
feat: upgrade to 43.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: irizzant <[email protected]>
  • Loading branch information
irizzant committed Dec 5, 2022
1 parent 2c14af9 commit 3384bdf
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/kube-prometheus-stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ name: kube-prometheus-stack
sources:
- https://github.com/prometheus-community/helm-charts
- https://github.com/prometheus-operator/kube-prometheus
version: 42.2.0
version: 43.0.0
appVersion: 0.60.1
kubeVersion: ">=1.16.0-0"
home: https://github.com/prometheus-operator/kube-prometheus
Expand Down
30 changes: 30 additions & 0 deletions charts/kube-prometheus-stack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,36 @@ _See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command documen

A major chart version change (like v1.2.3 -> v2.0.0) indicates that there is an incompatible breaking change needing manual actions.

### From 42.x to 43.x
Grafana sub chart was [updated to version 6.45.0](https://github.com/prometheus-community/helm-charts/commit/8b4c79314847e07d7af10826d5c68c3d625fcc66).

Users with Grafana sub chart enabled using persistence like this:
```yaml
grafana:
persistence:
...
type: statefulset
enabled: true
...
```
must change their settings or Grafana Pod **will NOT** be deployed.

In particular, to deploy Grafana as a StatefulSet, settings should be like this:

```yaml
grafana:
useStatefulSet: true
persistence:
...
enabled: true
...
```

Please note `useStatefulSet` is at the same level as `persistence` and `type` was removed.

Setting `useStatefulSet: false` (default) deploys Grafana as Deployment.


### From 41.x to 42.x

This includes the overridability of container registry for all containers at the global level using `global.imageRegistry` or per container image. The defaults have not changed but if you were using a custom image, you will have to override the registry of said custom container image before you upgrade.
Expand Down

0 comments on commit 3384bdf

Please sign in to comment.