Validate volume paths do not have ':'

This commit is contained in:
Tim Hockin
2016-02-29 13:22:45 -08:00
parent d1d036391a
commit 56be551416
10 changed files with 14 additions and 10 deletions

View File

@@ -742,7 +742,7 @@ type VolumeMount struct {
Name string `json:"name"`
// Optional: Defaults to false (read-write).
ReadOnly bool `json:"readOnly,omitempty"`
// Required.
// Required. Must not contain ':'.
MountPath string `json:"mountPath"`
}