Skip to content

Commit d96bf86

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 286504b commit d96bf86

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
| 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> |
5858
| 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> |
5959
| 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> |
60+
| 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> |
6061
| 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> |
6162
| 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> |
6263
| OVNObservability| | | <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
@@ -885,4 +885,12 @@ var (
885885
enhancementPR("https://github.com/openshift/enhancements/pull/1857").
886886
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
887887
mustRegister()
888+
889+
FeatureGateMutableCSINodeAllocatableCount = newFeatureGate("MutableCSINodeAllocatableCount").
890+
reportProblemsToJiraComponent("Storage / Kubernetes External Components").
891+
contactPerson("jsafrane").
892+
productScope(kubernetes).
893+
enhancementPR("https://github.com/kubernetes/enhancements/issues/4876").
894+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
895+
mustRegister()
888896
)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@
159159
{
160160
"name": "MultiDiskSetup"
161161
},
162+
{
163+
"name": "MutableCSINodeAllocatableCount"
164+
},
162165
{
163166
"name": "MutatingAdmissionPolicy"
164167
},

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

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,9 @@
250250
{
251251
"name": "MultiDiskSetup"
252252
},
253+
{
254+
"name": "MutableCSINodeAllocatableCount"
255+
},
253256
{
254257
"name": "MutatingAdmissionPolicy"
255258
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@
159159
{
160160
"name": "MultiDiskSetup"
161161
},
162+
{
163+
"name": "MutableCSINodeAllocatableCount"
164+
},
162165
{
163166
"name": "MutatingAdmissionPolicy"
164167
},

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

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@
232232
{
233233
"name": "MultiDiskSetup"
234234
},
235+
{
236+
"name": "MutableCSINodeAllocatableCount"
237+
},
235238
{
236239
"name": "MutatingAdmissionPolicy"
237240
},

0 commit comments

Comments
 (0)