mirror of
https://gitea.com/mcereda/oam.git
synced 2026-03-01 06:24:25 +00:00
Added notes about helm and helmfile to the KB
This commit is contained in:
24
knowledge base/helm.md
Normal file
24
knowledge base/helm.md
Normal 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
|
||||
```
|
||||
18
knowledge base/helmfile.md
Normal file
18
knowledge base/helmfile.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user