Skip to content

Commit

Permalink
feat: stop providing "controller" as a valid node role (#85)
Browse files Browse the repository at this point in the history
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".
  • Loading branch information
ricardomaraschini authored Sep 19, 2023
1 parent f882738 commit e91f7db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
)

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

// quiz prompts for the cluster configuration interactively.
var quiz = prompts.New()
Expand Down

0 comments on commit e91f7db

Please sign in to comment.