mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-13 23:34:24 +00:00
Added kapp notes to the knowledge base
This commit is contained in:
23
knowledge base/kapp.md
Normal file
23
knowledge base/kapp.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Kapp
|
||||
|
||||
## TL;DR
|
||||
|
||||
```shell
|
||||
# Configurations picked up from a directory
|
||||
$ kapp deploy -a my-app -f ./examples/simple-app-example/config-1.yml
|
||||
|
||||
# Can be used with helm charts, removing need for Tiller
|
||||
$ kapp -y deploy -a my-chart -f <(helm template my-chart --values my-vals.yml)
|
||||
|
||||
# … and with kustomize
|
||||
$ kapp -y deploy -a my-app -f <(kustomize build ./my-app)
|
||||
|
||||
# … or templated with ytt
|
||||
$ kapp -y deploy -a my-app -f <(ytt -f ./examples/simple-app-example/config-1.yml)
|
||||
```
|
||||
|
||||
## Further readings
|
||||
|
||||
- Official [website]
|
||||
|
||||
[website]: https://get-kapp.io
|
||||
Reference in New Issue
Block a user