Merge pull request #837 from ronaldpetty/patch-1

CMD syntax is invalid
This commit is contained in:
johndmulhausen
2016-07-14 12:50:00 -07:00
committed by GitHub
+2 -2
View File
@@ -362,7 +362,7 @@ spec:
containers:
- name: test-container
image: gcr.io/google_containers/busybox
command: [ "/bin/sh", "cat", "/etc/config/special.how" ]
command: [ "/bin/sh", "cat /etc/config/special.how" ]
volumeMounts:
- name: config-volume
mountPath: /etc/config
@@ -390,7 +390,7 @@ spec:
containers:
- name: test-container
image: gcr.io/google_containers/busybox
command: [ "/bin/sh", "cat", "/etc/config/path/to/special-key" ]
command: [ "/bin/sh", "cat /etc/config/path/to/special-key" ]
volumeMounts:
- name: config-volume
mountPath: /etc/config