Migrate istio resources to helm #15
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Possible options that I see now:
I'd start with the "raw" chart.
With
helmfile
you can add a sub-chart without forking the chart. https://helmfile.readthedocs.io/en/latest/advanced-features/#adding-dependencies-without-forking-the-chartThe idea is to add the "raw" chart as a dependency, and create some common values, that can be used in each release. Example for gitea can be found here: https://git.badhouseplants.net/badhouseplants/k8s-cluster-config/src/branch/main/badhouseplants/values/values.gitea.yaml
But this example can not generate several
VSs
for one chart, so I think it should be a template with a for loop. Also, service name should be taken from the release, if possible.Here is a release template example
b03661222a/releases.yaml (L38)
AC:
But without hardcoded values, if possible.