diff options
Diffstat (limited to 'local/helm-operations')
-rw-r--r-- | local/helm-operations/nginx-operation.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/local/helm-operations/nginx-operation.yaml b/local/helm-operations/nginx-operation.yaml new file mode 100644 index 0000000..a1d76a3 --- /dev/null +++ b/local/helm-operations/nginx-operation.yaml @@ -0,0 +1,22 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: web +--- +apiVersion: helm.cattle.io/v1 +kind: HelmChart +metadata: + name: apache + namespace: kube-system +spec: + repo: https://charts.bitnami.com/bitnami + chart: apache + targetNamespace: web + valuesContent: |- + service: + type: ClusterIP + ingress: + enabled: true + hostname: sandbox.local + metrics: + enabled: true |