Skip to content

Commit e91f7db

Browse files
feat: stop providing "controller" as a valid node role (#85)
feat: stop providing controller as a valid role we have decided to remove the "controller" role from the configuration step. we only allow roles "worker" and "controller+worker".
1 parent f882738 commit e91f7db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
)
2727

2828
// roles holds a list of valid roles.
29-
var roles = []string{"controller+worker", "controller", "worker"}
29+
var roles = []string{"controller+worker", "worker"}
3030

3131
// quiz prompts for the cluster configuration interactively.
3232
var quiz = prompts.New()

0 commit comments

Comments
 (0)