Skip to content

Commit 6625a06

Browse files
committed
Promote CSINodeExpandSecret to GA
CSINodeExpandSecret is on GA since v1.29 and this mark its GA status with external provisioner https://kubernetes.io/blog/2023/12/15/csi-node-expand-secret-support-ga/ Signed-off-by: Humble Chirammal <[email protected]>
1 parent c7f9443 commit 6625a06

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Following table reflects the head of this branch.
2626
| CSIMigration | GA | On | [Migrating in-tree volume plugins to CSI](https://kubernetes.io/docs/concepts/storage/volumes/#csi-migration). | No |
2727
| CSIStorageCapacity | GA | On | Publish [capacity information](https://kubernetes.io/docs/concepts/storage/volumes/#storage-capacity) for the Kubernetes scheduler. | No |
2828
| ReadWriteOncePod | Beta | On | [Single pod access mode for PersistentVolumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes). | No |
29-
| CSINodeExpandSecret | Beta | On | [CSI Node expansion secret](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/3107-csi-nodeexpandsecret) | No |
29+
| CSINodeExpandSecret | GA | On | [CSI Node expansion secret](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/3107-csi-nodeexpandsecret) | No |
3030
| HonorPVReclaimPolicy| Beta | On | [Honor the PV reclaim policy](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/2644-honor-pv-reclaim-policy) | No |
3131
| PreventVolumeModeConversion | Beta |On | [Prevent unauthorized conversion of source volume mode](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/3141-prevent-volume-mode-conversion) | `--prevent-volume-mode-conversion` (No in-tree feature gate) |
3232
| CrossNamespaceVolumeDataSource | Alpha |Off | [Cross-namespace volume data source](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/3294-provision-volumes-from-cross-namespace-snapshots) | `--feature-gates=CrossNamespaceVolumeDataSource=true` |

pkg/controller/controller_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ func fakeClaim(name, namespace, claimUID string, capacity int64, boundToVolume s
598598
case "filesystem":
599599
claim.Spec.VolumeMode = &volumeModeFileSystem
600600
default:
601-
// leave it undefined/nil to maintaint the current defaults for test cases
601+
// leave it undefined/nil to maintain the current defaults for test cases
602602
}
603603
return &claim
604604
}
@@ -5637,7 +5637,7 @@ func generatePVCForProvisionFromPVC(srcNamespace, srcName, scName string, reques
56375637
case "filesystem":
56385638
provisionRequest.PVC.Spec.VolumeMode = &volumeModeFileSystem
56395639
default:
5640-
// leave it undefined/nil to maintaint the current defaults for test cases
5640+
// leave it undefined/nil to maintain the current defaults for test cases
56415641
}
56425642

56435643
return provisionRequest
@@ -5684,7 +5684,7 @@ func generatePVCForProvisionFromXnsdataSource(scName, namespace string, dataSour
56845684
case "filesystem":
56855685
provisionRequest.PVC.Spec.VolumeMode = &volumeModeFileSystem
56865686
default:
5687-
// leave it undefined/nil to maintaint the current defaults for test cases
5687+
// leave it undefined/nil to maintain the current defaults for test cases
56885688
}
56895689

56905690
return provisionRequest

0 commit comments

Comments
 (0)