mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-10 16:42:51 +00:00
Update mount flag to match docker docs
- Also modify TODO in validator-kubeval example
This commit is contained in:
@@ -162,7 +162,7 @@ func (s *StorageMount) String() string {
|
||||
|
||||
func StringToStorageMount(s string) StorageMount {
|
||||
m := make(map[string]string)
|
||||
options := strings.Split(s, ";")
|
||||
options := strings.Split(s, ",")
|
||||
for _, option := range options {
|
||||
keyVal := strings.Split(option, "=")
|
||||
m[keyVal[0]] = keyVal[1]
|
||||
|
||||
Reference in New Issue
Block a user