Added notes about helm and helmfile to the KB

This commit is contained in:
Michele Cereda
2022-08-04 17:27:17 +02:00
parent a296b4f7b4
commit 7597d9c964
2 changed files with 42 additions and 0 deletions

24
knowledge base/helm.md Normal file
View File

@@ -0,0 +1,24 @@
# Helm
1. [TL;DR](#tldr)
## TL;DR
```sh
# List installed plugins.
helm plugin list
helm plugin ls
# Install new plugins.
helm plugin add https://github.com/author/plugin
helm plugin install path/to/plugin
# Update installed plugins.
helm plugin update plugin-name
helm plugin up plugin-name
# Uninstall plugins.
helm plugin rm plugin-name
helm plugin remove plugin-name
helm plugin uninstall plugin-name
```

View File

@@ -0,0 +1,18 @@
# 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
```