@@ -159,8 +159,10 @@ type FeatureGateEnabledDisabled struct {
159
159
var FeatureSets = map [FeatureSet ]* FeatureGateEnabledDisabled {
160
160
Default : defaultFeatures ,
161
161
CustomNoUpgrade : {
162
- Enabled : []FeatureGateDescription {},
163
- Disabled : []FeatureGateDescription {},
162
+ Enabled : []FeatureGateDescription {},
163
+ Disabled : []FeatureGateDescription {
164
+ disableKubeletCloudCredentialProviders , // We do not currently ship the correct config to use the external credentials provider.
165
+ },
164
166
},
165
167
TechPreviewNoUpgrade : newDefaultFeatures ().
166
168
with (validatingAdmissionPolicy ).
@@ -189,6 +191,7 @@ var FeatureSets = map[FeatureSet]*FeatureGateEnabledDisabled{
189
191
with (sdnLiveMigration ).
190
192
with (mixedCPUsAllocation ).
191
193
with (managedBootImages ).
194
+ without (disableKubeletCloudCredentialProviders ).
192
195
toFeatures (defaultFeatures ),
193
196
LatencySensitive : newDefaultFeatures ().
194
197
toFeatures (defaultFeatures ),
@@ -207,7 +210,9 @@ var defaultFeatures = &FeatureGateEnabledDisabled{
207
210
privateHostedZoneAWS ,
208
211
buildCSIVolumes ,
209
212
},
210
- Disabled : []FeatureGateDescription {},
213
+ Disabled : []FeatureGateDescription {
214
+ disableKubeletCloudCredentialProviders , // We do not currently ship the correct config to use the external credentials provider.
215
+ },
211
216
}
212
217
213
218
type featureSetBuilder struct {
0 commit comments