Merge pull request #803 from thaJeztah/remove-orchestrator-aliases

Remove aliases for orchestrator
This commit is contained in:
Vincent Demeester 2018-01-12 08:59:52 +01:00 committed by GitHub
commit b7b3e9a261
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,9 +21,9 @@ const (
func normalize(flag string) Orchestrator {
switch flag {
case "kubernetes", "k8s":
case "kubernetes":
return OrchestratorKubernetes
case "swarm", "swarmkit":
case "swarm":
return OrchestratorSwarm
default:
return orchestratorUnset