helm-charts/examples/kustomize
2024-05-23 11:57:23 +02:00
..
kustomization.yaml feat: Update app-template, k8s-ycl 2024-05-23 11:57:23 +02:00
README.md docs(examples): Add some deployment examples 2022-08-11 14:08:22 +02:00
values.yaml feat: Update app-template, k8s-ycl 2024-05-23 11:57:23 +02: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.