#240 Fix regression in volume validation

This commit is contained in:
Tomasz Sęk 2019-12-31 09:04:21 +01:00
parent 0ba70a8a93
commit e1e21f92d6
No known key found for this signature in database
GPG Key ID: DC356D23F6A644D0
1 changed files with 0 additions and 2 deletions

View File

@ -127,8 +127,6 @@ func (r *ReconcileJenkinsBaseConfiguration) validateVolumes() ([]string, error)
} else if len(msg) > 0 { } else if len(msg) > 0 {
messages = append(messages, msg...) messages = append(messages, msg...)
} }
default: //TODO add support for rest of volumes
messages = append(messages, fmt.Sprintf("Unsupported volume '%v'", volume))
} }
} }