mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-03 08:37:03 +02:00
docs(examples): Add some deployment examples
This commit is contained in:
parent
592e2a35dc
commit
216592df83
10 changed files with 280 additions and 34 deletions
25
examples/kustomize/README.md
Normal file
25
examples/kustomize/README.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Deployment example using Kustomize
|
||||
|
||||
### Deployment
|
||||
|
||||
#### Build
|
||||
|
||||
In order to view the resulting manifest for this example through Kustomize, issue
|
||||
the following command:
|
||||
|
||||
```console
|
||||
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:
|
||||
|
||||
```console
|
||||
kubectl kustomize --enable-helm . | kubectl apply -f -
|
||||
```
|
||||
|
||||
This will apply the rendered manifest(s) to your cluster.
|
Loading…
Add table
Add a link
Reference in a new issue