Files
oam/knowledge base/kubernetes/kapp.md

908 B

Kapp

Table of contents

  1. TL;DR
  2. Further readings
  3. Sources

TL;DR

# 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

Sources

All the references in the further readings section, plus the following: