Skip to content

Commit

Permalink
enable local-storage by default (#414) (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed May 10, 2024
1 parent 716ca03 commit ead202c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/k8s/cmd/k8s/k8s_bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ func newBootstrapCmd(env cmdutil.ExecutionEnvironment) *cobra.Command {
Gateway: apiv1.GatewayConfig{
Enabled: utils.Pointer(true),
},
LocalStorage: apiv1.LocalStorageConfig{
Enabled: utils.Pointer(true),
},
},
}
}
Expand Down Expand Up @@ -160,7 +163,7 @@ func getConfigInteractively(stdin io.Reader, stdout io.Writer, stderr io.Writer)
stdin, stdout, stderr,
"Which features would you like to enable?",
featureList,
"network, dns, gateway",
"network, dns, gateway, local-storage",
nil,
)
for _, component := range strings.FieldsFunc(components, func(r rune) bool { return unicode.IsSpace(r) || r == ',' }) {
Expand Down

0 comments on commit ead202c

Please sign in to comment.