Skip to content

Commit 622bc69

Browse files
Updates operator to pass feature gates to Machine
This change updates the MAO to pass the `--feature-gate` argument to the machine controller container.
1 parent b557f93 commit 622bc69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/operator/sync.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ func newContainers(config *OperatorConfig, features map[string]bool) []corev1.Co
665665
// --feature-gates=<name>=<bool>,<name>=<bool>... arg
666666
featureGateArgs := append(args, buildFeatureGatesString(features))
667667

668-
machineControllerArgs := append([]string{}, args...)
668+
machineControllerArgs := append([]string{}, featureGateArgs...)
669669
switch config.PlatformType {
670670
case v1.AzurePlatformType:
671671
machineControllerArgs = append(machineControllerArgs, "--max-concurrent-reconciles=10")

0 commit comments

Comments
 (0)