43a7d446 by Adam Heath

Set HOME parameters correctly for try-helmfile.

1 parent 5ba61c3a
...@@ -112,11 +112,24 @@ spec: ...@@ -112,11 +112,24 @@ spec:
112 workingDir: /tmp/git-storage/k8s-start-of-day 112 workingDir: /tmp/git-storage/k8s-start-of-day
113 command: ["/tmp/k8s-bootstrap-scripts/check-mode", "helmfile", "/usr/local/bin/helmfile"] 113 command: ["/tmp/k8s-bootstrap-scripts/check-mode", "helmfile", "/usr/local/bin/helmfile"]
114 args: ["apply"] 114 args: ["apply"]
115 envFrom:
116 - configMapRef:
117 name: k8s-bootstrap-config
115 volumeMounts: 118 volumeMounts:
116 - name: git-storage 119 - name: git-storage
117 mountPath: /tmp/git-storage 120 mountPath: /tmp/git-storage
118 - name: k8s-bootstrap-scripts 121 - name: k8s-bootstrap-scripts
119 mountPath: /tmp/k8s-bootstrap-scripts 122 mountPath: /tmp/k8s-bootstrap-scripts
123 - name: cluster-home
124 mountPath: /tmp/cluster-home
125 - name: cluster-ssh
126 mountPath: /tmp/cluster-home/.ssh
127 - name: k8s-bootstrap-ssh-auth
128 mountPath: /tmp/cluster-home/.ssh/id_rsa
129 subPath: id_rsa
130 - name: k8s-bootstrap-ssh-config
131 mountPath: /tmp/cluster-home/.ssh/config
132 subPath: config
120 133
121 containers: 134 containers:
122 - name: show-status 135 - name: show-status
......