helm-charts/examples/kustomize
Bernd Schorgers 3d3028b889
feat(common): Release v2.4.0 (#245)
Signed-off-by: Christopher Larivière <lariviere.c@gmail.com>
Co-authored-by: Christopher Larivière <lariviere.c@gmail.com>
Co-authored-by: Markus Reiter <me@reitermark.us>
2023-12-10 08:56:08 +00:00
..
kustomization.yaml docs(examples): Add some deployment examples 2022-08-11 14:08:22 +02:00
README.md docs(examples): Add some deployment examples 2022-08-11 14:08:22 +02:00
values.yaml feat(common): Release v2.4.0 (#245) 2023-12-10 08:56:08 +00:00

Deployment example using Kustomize

Deployment

Build

In order to view the resulting manifest for this example through Kustomize, issue the following command:

kubectl kustomize --enable-helm .

This will print the rendered manifest(s) to your console.

Apply

In order to deploy the manifest for this example through Kustomize, issue the following command:

kubectl kustomize --enable-helm . | kubectl apply -f -

This will apply the rendered manifest(s) to your cluster.