From 640ff61422bc0ee3966941b93d9889ddbbd38d77 Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Thu, 30 Jul 2026 18:17:14 -0600 Subject: more files --- src/orchestration/cluster-setup-files/helm.yaml | 75 +++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 src/orchestration/cluster-setup-files/helm.yaml (limited to 'src/orchestration/cluster-setup-files/helm.yaml') 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: {} + +... -- cgit v1.3