@@ -14,7 +14,7 @@ const (
1414 // // MyFeature enables Foo.
1515 // MyFeature featuregate.Feature = "MyFeature"
1616
17- // MutateDisableNTP enables the mutation that disables NTP if any worker's flatcar image version is greater than or eqaul to `FlatcarImageVersion`
17+ // MutateDisableNTP enables the mutation that disables NTP if any worker's flatcar image version is greater than or equal to `FlatcarImageVersion`
1818 MutateDisableNTP featuregate.Feature = "MutateDisableNTP"
1919 // EnsureSTACKITLBDeletion enables the STACKIT LB deletion cleanup. The function checks for dangling/zombied LB's and then tries to delete them.
2020 EnsureSTACKITLBDeletion featuregate.Feature = "EnsureSTACKITLBDeletion"
@@ -26,6 +26,8 @@ const (
2626 ShootUseSTACKITMachineControllerManager = "shoot.gardener.cloud/use-stackit-machine-controller-manager"
2727 // ShootUseSTACKITAPIInfrastructureController Uses the STACKIT API to create the shoot resources instead of OpenStack for a specific Shoot.
2828 ShootUseSTACKITAPIInfrastructureController = "shoot.gardener.cloud/use-stackit-api-infrastructure-controller"
29+ // EnableSTACKITWorkloadIdentity activates the deployment of the stackit-pod-identity-webhook to enable workload identity injection into pods.
30+ EnableSTACKITWorkloadIdentity featuregate.Feature = "EnableSTACKITWorkloadIdentity"
2931)
3032
3133var (
4648 EnsureSTACKITLBDeletion : {Default : true , PreRelease : featuregate .Alpha },
4749 UseSTACKITAPIInfrastructureController : {Default : true , PreRelease : featuregate .Alpha },
4850 UseSTACKITMachineControllerManager : {Default : true , PreRelease : featuregate .Alpha },
51+ EnableSTACKITWorkloadIdentity : {Default : false , PreRelease : featuregate .Alpha },
4952 }
5053)
5154
0 commit comments