Add guide for converting Helm charts to Wild-Cloud Kustomize definitions
This commit is contained in:
17
docs/guides/converting-helm-charts.md
Normal file
17
docs/guides/converting-helm-charts.md
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
# Converting Helm Charts to Wild-Cloud Kustomize definitions
|
||||||
|
|
||||||
|
_(This guide is a work in progress)_
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm fetch --untar --untardir charts nginx-stable/nginx-ingress
|
||||||
|
helm template --output-dir base --namespace ingress --values values.yaml ingress-controller charts/nginx-ingress
|
||||||
|
cat <<EOF > base/nginx-ingress/namespace.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: ingress
|
||||||
|
EOF
|
||||||
|
cd base/nginx-ingress
|
||||||
|
kustomize create --autodetect
|
||||||
|
kubectl apply -k base/nginx-ingress
|
||||||
|
```
|
Reference in New Issue
Block a user