mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 21:54:24 +00:00
19 lines
349 B
Markdown
19 lines
349 B
Markdown
# Helmfile
|
|
|
|
1. [TL;DR](#tldr)
|
|
|
|
## TL;DR
|
|
|
|
```sh
|
|
# Show what happens in the internal computations.
|
|
helmfile --debug -e environment apply
|
|
|
|
# Show the difference between the current state and what would be applied.
|
|
# Requires `helm` to have the 'diff' plugin installed.
|
|
helmfile
|
|
-f custom.yml
|
|
-e environment
|
|
diff
|
|
--values environment.yaml
|
|
```
|