Skip to content

Commit 5c12ab4

Browse files
committed
Add MutableCSINodeAllocatableCount to Dev- and TechPreview
MutableCSINodeAllocatableCount is beta + disabled by default in Kubernetes 1.34 (alpha in 1.33). We want it tested in TP clusters, both by CI and customers.
1 parent 8a46f74 commit 5c12ab4

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
| MinimumKubeletVersion| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
5959
| MixedCPUsAllocation| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
6060
| MultiDiskSetup| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
61+
| MutableCSINodeAllocatableCount| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
6162
| MutatingAdmissionPolicy| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
6263
| NodeSwap| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
6364
| NutanixMultiSubnets| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |

features/features.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -897,4 +897,12 @@ var (
897897
enhancementPR("https://github.com/kubernetes/enhancements/issues/4222").
898898
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
899899
mustRegister()
900+
901+
FeatureGateMutableCSINodeAllocatableCount = newFeatureGate("MutableCSINodeAllocatableCount").
902+
reportProblemsToJiraComponent("Storage / Kubernetes External Components").
903+
contactPerson("jsafrane").
904+
productScope(kubernetes).
905+
enhancementPR("https://github.com/kubernetes/enhancements/issues/4876").
906+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
907+
mustRegister()
900908
)

payload-manifests/featuregates/featureGate-Hypershift-Default.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,9 @@
163163
{
164164
"name": "MultiDiskSetup"
165165
},
166+
{
167+
"name": "MutableCSINodeAllocatableCount"
168+
},
166169
{
167170
"name": "MutatingAdmissionPolicy"
168171
},

payload-manifests/featuregates/featureGate-Hypershift-DevPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,9 @@
245245
{
246246
"name": "MultiDiskSetup"
247247
},
248+
{
249+
"name": "MutableCSINodeAllocatableCount"
250+
},
248251
{
249252
"name": "MutatingAdmissionPolicy"
250253
},

payload-manifests/featuregates/featureGate-Hypershift-TechPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,9 @@
248248
{
249249
"name": "MultiDiskSetup"
250250
},
251+
{
252+
"name": "MutableCSINodeAllocatableCount"
253+
},
251254
{
252255
"name": "MutatingAdmissionPolicy"
253256
},

payload-manifests/featuregates/featureGate-SelfManagedHA-Default.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,9 @@
166166
{
167167
"name": "MultiDiskSetup"
168168
},
169+
{
170+
"name": "MutableCSINodeAllocatableCount"
171+
},
169172
{
170173
"name": "MutatingAdmissionPolicy"
171174
},

payload-manifests/featuregates/featureGate-SelfManagedHA-DevPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,9 @@
227227
{
228228
"name": "MultiDiskSetup"
229229
},
230+
{
231+
"name": "MutableCSINodeAllocatableCount"
232+
},
230233
{
231234
"name": "MutatingAdmissionPolicy"
232235
},

payload-manifests/featuregates/featureGate-SelfManagedHA-TechPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,9 @@
230230
{
231231
"name": "MultiDiskSetup"
232232
},
233+
{
234+
"name": "MutableCSINodeAllocatableCount"
235+
},
233236
{
234237
"name": "MutatingAdmissionPolicy"
235238
},

0 commit comments

Comments
 (0)