bfcf80f6 by Adam Heath

Add LogLevel verbose to ssh, add cluster-ssh volume.

1 parent 75768234
...@@ -8,6 +8,7 @@ data: ...@@ -8,6 +8,7 @@ data:
8 HOME: /tmp/cluster-home 8 HOME: /tmp/cluster-home
9 SSH_CONFIG: | 9 SSH_CONFIG: |
10 StrictHostKeyChecking no 10 StrictHostKeyChecking no
11 LogLevel VERBOSE
11 12
12 #-i /tmp/cluster-ssh/ssh-private-key 13 #-i /tmp/cluster-ssh/ssh-private-key
13 --- 14 ---
...@@ -65,6 +66,8 @@ spec: ...@@ -65,6 +66,8 @@ spec:
65 defaultMode: 0755 66 defaultMode: 0755
66 - name: cluster-home 67 - name: cluster-home
67 emptyDir: {} 68 emptyDir: {}
69 - name: cluster-ssh
70 emptyDir: {}
68 - name: git-storage 71 - name: git-storage
69 emptyDir: {} 72 emptyDir: {}
70 73
...@@ -79,6 +82,8 @@ spec: ...@@ -79,6 +82,8 @@ spec:
79 mountPath: /tmp/k8s-bootstrap-scripts 82 mountPath: /tmp/k8s-bootstrap-scripts
80 - name: cluster-home 83 - name: cluster-home
81 mountPath: /tmp/cluster-home 84 mountPath: /tmp/cluster-home
85 - name: cluster-ssh
86 mountPath: /tmp/cluster-home/.ssh
82 - name: k8s-bootstrap-ssh-auth 87 - name: k8s-bootstrap-ssh-auth
83 mountPath: /tmp/cluster-home/.ssh/id 88 mountPath: /tmp/cluster-home/.ssh/id
84 subPath: id 89 subPath: id
......