We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847eafa commit bdb921cCopy full SHA for bdb921c
pkg/config/sync.go
@@ -684,6 +684,9 @@ func GetCurrentConfigString(currConfig *controller.OperatorConfiguration) string
684
config = append(config, fmt.Sprintf("workspace.cleanupCronJob.cronJobScript=%s", workspace.CleanupCronJob.Schedule))
685
}
686
687
+ if workspace.HostUsers != nil {
688
+ config = append(config, fmt.Sprintf("workspace.hostUsers=%t", *workspace.HostUsers))
689
+ }
690
691
if currConfig.EnableExperimentalFeatures != nil && *currConfig.EnableExperimentalFeatures {
692
config = append(config, "enableExperimentalFeatures=true")
0 commit comments