mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-14 07:44:25 +00:00
41 lines
920 B
Markdown
41 lines
920 B
Markdown
# Kapp
|
|
|
|
## Table of contents <!-- omit in toc -->
|
|
|
|
1. [TL;DR](#tldr)
|
|
1. [Further readings](#further-readings)
|
|
1. [Sources](#sources)
|
|
|
|
## TL;DR
|
|
|
|
```sh
|
|
# 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
|
|
$ kapp -y deploy -a 'my-chart' -f <(helm template 'my-chart' --values 'my-values.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]
|
|
|
|
## Sources
|
|
|
|
All the references in the [further readings] section, plus the following:
|
|
|
|
<!-- project's references -->
|
|
[website]: https://get-kapp.io
|
|
|
|
<!-- in-article references -->
|
|
[further readings]: #further-readings
|
|
|
|
<!-- internal references -->
|
|
<!-- external references -->
|