An open API service indexing awesome lists of open source software.

https://github.com/marcoceppi/nested-helmfiles


https://github.com/marcoceppi/nested-helmfiles

Last synced: 3 months ago
JSON representation

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
```