Skip to content

Commit

Permalink
Merge pull request #4834 from RA489/conruntime
Browse files Browse the repository at this point in the history
[FEATURE] allow to set container-runtime via config
  • Loading branch information
tstromberg authored Aug 14, 2019
2 parents 88c27da + 043c45d commit e18d84c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cmd/minikube/cmd/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ var settings = []Setting{
validations: []setFn{IsValidDriver},
callbacks: []setFn{RequiresRestartMsg},
},
{
name: "container-runtime",
set: SetString,
validations: []setFn{IsContainerdRuntime},
callbacks: []setFn{RequiresRestartMsg},
},
{
name: "feature-gates",
set: SetString,
Expand Down

0 comments on commit e18d84c

Please sign in to comment.