Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit91 committed Jul 10, 2023
1 parent 19a3dc8 commit 76bd9d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,8 @@ func (c *config) clusterCreate() error {
draintimeout := viper.GetDuration("draintimeout")

var allowprivileged *bool
if viper.IsSet("alllowprivileged") {
allowprivileged = pointer.Pointer(viper.GetBool("alllowprivileged"))
if viper.IsSet("allowprivileged") {
allowprivileged = pointer.Pointer(viper.GetBool("allowprivileged"))
}
var defaultPodSecurityStandard *string
if viper.IsSet("default-pod-security-standard") {
Expand Down

0 comments on commit 76bd9d0

Please sign in to comment.