summaryrefslogtreecommitdiff
path: root/src/orchestration/cluster-setup-files/helm.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'src/orchestration/cluster-setup-files/helm.yaml')
-rw-r--r--src/orchestration/cluster-setup-files/helm.yaml75
1 files changed, 75 insertions, 0 deletions
diff --git a/src/orchestration/cluster-setup-files/helm.yaml b/src/orchestration/cluster-setup-files/helm.yaml
new file mode 100644
index 0000000..f0ec72c
--- /dev/null
+++ b/src/orchestration/cluster-setup-files/helm.yaml
@@ -0,0 +1,75 @@
+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ creationTimestamp: null
+ labels:
+ app: helm
+ name: tiller
+ name: tiller-deploy
+ namespace: {{ namespace }}
+spec:
+ replicas: 1
+ selector: {"matchLabels": {"app": "helm", "name": "tiller"}}
+ strategy: {}
+ template:
+ metadata:
+ creationTimestamp: null
+ labels:
+ app: helm
+ name: tiller
+ spec:
+ automountServiceAccountToken: true
+ containers:
+ - env:
+ - name: TILLER_NAMESPACE
+ value: {{ namespace }}
+ - name: TILLER_HISTORY_MAX
+ value: "0"
+ image: registry.local:9001/gcr.io/kubernetes-helm/tiller:v2.13.1
+ imagePullPolicy: IfNotPresent
+ livenessProbe:
+ httpGet:
+ path: /liveness
+ port: 44135
+ initialDelaySeconds: 1
+ timeoutSeconds: 1
+ name: tiller
+ ports:
+ - containerPort: 44134
+ name: tiller
+ - containerPort: 44135
+ name: http
+ readinessProbe:
+ httpGet:
+ path: /readiness
+ port: 44135
+ initialDelaySeconds: 1
+ timeoutSeconds: 1
+ resources: {}
+ serviceAccountName: vdu-tiller
+status: {}
+
+---
+apiVersion: v1
+kind: Service
+metadata:
+ creationTimestamp: null
+ labels:
+ app: helm
+ name: tiller
+ name: tiller-deploy
+ namespace: {{ namespace }}
+spec:
+ ports:
+ - name: tiller
+ port: 44134
+ targetPort: tiller
+ selector:
+ app: helm
+ name: tiller
+ type: ClusterIP
+status:
+ loadBalancer: {}
+
+...