Skip to content

Commit

Permalink
Enables kubelet cloud credential providers
Browse files Browse the repository at this point in the history
  • Loading branch information
theobarberbany committed Mar 8, 2024
1 parent 610cbc7 commit d3a560f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions config/v1/types_feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,8 @@ type FeatureGateEnabledDisabled struct {
var FeatureSets = map[FeatureSet]*FeatureGateEnabledDisabled{
Default: defaultFeatures,
CustomNoUpgrade: {
Enabled: []FeatureGateDescription{},
Disabled: []FeatureGateDescription{
disableKubeletCloudCredentialProviders, // We do not currently ship the correct config to use the external credentials provider.
},
Enabled: []FeatureGateDescription{},
Disabled: []FeatureGateDescription{},
},
TechPreviewNoUpgrade: newDefaultFeatures().
with(validatingAdmissionPolicy).
Expand All @@ -189,7 +187,6 @@ var FeatureSets = map[FeatureSet]*FeatureGateEnabledDisabled{
without(clusterAPIInstall).
with(mixedCPUsAllocation).
with(managedBootImages).
without(disableKubeletCloudCredentialProviders).
with(onClusterBuild).
with(signatureStores).
with(pinnedImages).
Expand All @@ -216,10 +213,9 @@ var defaultFeatures = &FeatureGateEnabledDisabled{
kmsv1,
vSphereControlPlaneMachineset,
sdnLiveMigration,
disableKubeletCloudCredentialProviders,
},
Disabled: []FeatureGateDescription{
disableKubeletCloudCredentialProviders, // We do not currently ship the correct config to use the external credentials provider.
},
Disabled: []FeatureGateDescription{},
}

type featureSetBuilder struct {
Expand Down

0 comments on commit d3a560f

Please sign in to comment.