https://github.com/marcoceppi/nested-helmfiles
https://github.com/marcoceppi/nested-helmfiles
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcoceppi/nested-helmfiles
- Owner: marcoceppi
- Created: 2020-02-21T14:41:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-21T15:03:13.000Z (over 5 years ago)
- Last Synced: 2025-02-15T16:42:15.845Z (4 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example of nested helmfiles
The goal is to override the service config in `models/unit1/values/test.yaml.gotmpl`. The following structures do not work:
```yaml
helmfiles:
- path: ...
values:
- default-test:
config:
ip: 10.9.0.1
``````yaml
helmfiles:
- path: ...
values:
- test:
config:
ip: 10.9.0.1
``````yaml
helmfiles:
- path: ...
values:
- default-test.config.ip: 10.9.0.1
```