mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-06-10 02:26:09 +00:00
This is a backport of PR #802 as merged into main (00699ac).
SUMMARY
Starting with version 3.14.0, Helm supports --reset-then-reuse-values. As discussed on the original PR. This greatly improves on --reuse-values as it allows to avoid templates errors when new features are added to an upgraded chart.
Closes #803
ISSUE TYPE
Feature Pull Request
COMPONENT NAME
helm
ADDITIONAL INFORMATION
This PR is greatly 'inspired' by #575 and because I wasn't sure how I could provide additional tests for it, I actually copied those build previously for --reuse-values (as it is an improvement on this feature.
Reviewed-by: Bianca Henderson <beeankha@gmail.com>
30 lines
888 B
YAML
30 lines
888 B
YAML
---
|
|
helm_default_archive_name: "helm-{{ helm_version }}-{{ ansible_system | lower }}-amd64.tar.gz"
|
|
helm_binary: "/tmp/helm/{{ ansible_system | lower }}-amd64/helm"
|
|
|
|
chart_test: "ingress-nginx"
|
|
chart_test_local_path: "nginx-ingress"
|
|
chart_test_version: 4.2.4
|
|
chart_test_version_local_path: 1.32.0
|
|
chart_test_version_upgrade: 4.2.5
|
|
chart_test_version_upgrade_local_path: 1.33.0
|
|
chart_test_repo: "https://kubernetes.github.io/ingress-nginx"
|
|
chart_test_git_repo: "http://github.com/helm/charts.git"
|
|
chart_test_values:
|
|
revisionHistoryLimit: 0
|
|
myValue: "changed"
|
|
|
|
test_namespace:
|
|
- "helm-test-crds"
|
|
- "helm-uninstall"
|
|
- "helm-read-envvars"
|
|
- "helm-dep-update"
|
|
- "helm-local-path-001"
|
|
- "helm-local-path-002"
|
|
- "helm-local-path-003"
|
|
- "helm-from-repository"
|
|
- "helm-from-url"
|
|
- "helm-reuse-values"
|
|
- "helm-chart-with-space-into-name"
|
|
- "helm-reset-then-reuse-values"
|