How to manage the life cycle of installed Helm charts? #316
-
There are two prominent examples in the project which demand long-term maintenance such as:
How would upgrades for those be applied in an existing cluster? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
@otavio Both have You can upgrade them by applying a Also, it seems possible to directly upgrade with the Lastly, we export a |
Beta Was this translation helpful? Give feedback.
@otavio Both have
HelmChart
andHelmChartConfig
definitions, you can view them withkubectl get helmchart(config) -A
(or just usekubectl get crds
if I got the orthograph wrong).You can upgrade them by applying a
HelmChartConfig
; see examples in the templates folder. And more on the matter here: https://rancher.com/docs/k3s/latest/en/helm/.Also, it seems possible to directly upgrade with the
helm
cli, but GitOps principles would dictate the former method.Lastly, we export a
kustomization_backup.yaml
and save it at the root of the folder; this will also include all the generated HelmCharts and HelmChartConfigs and can be used to upgrade too, but changing the chart versions. Please see t…