Files
oam/knowledge base/kubernetes/kustomize.md
2023-12-09 23:55:00 +01:00

759 B

Kustomize

FIXME

Table of contents

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

TL;DR

# validation
kustomize build ${PROJECT} | kubectl apply --filename - --validate --dry-run=client
kubeval <(kustomize build ${PROJECT})

# deployment
kustomize build ${PROJECT} | kubectl apply --filename -

Further readings

Sources

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