Skip to content

Commit 783a7fd

Browse files
committed
ci: deploy the NVMe-oF driver with the ceph-csi-operator
Deploy the NVMe-oF CSI driver alongside RBD, CephFS, and NFS drivers when using the ceph-csi-operator deployment script. Assisted-by: Claude Code <noreply@anthropic.com> Signed-off-by: Niels de Vos <ndevos@ibm.com>
1 parent c2329bc commit 783a7fd

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

scripts/deploy-ceph-csi-operator.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ ENCRYPTION_CONFIGMAP_NAME="ceph-csi-encryption-kms-config"
2626
RBD_DRIVER_NAME="rbd.csi.ceph.com"
2727
CEPHFS_DRIVER_NAME="cephfs.csi.ceph.com"
2828
NFS_DRIVER_NAME="nfs.csi.ceph.com"
29+
NVMEOF_DRIVER_NAME="nvmeof.csi.ceph.com"
2930

3031
# k8s csi sidecar image
3132
K8S_IMAGE_REPO=${K8S_IMAGE_REPO:-"registry.k8s.io/sig-storage"}
@@ -114,6 +115,7 @@ function deploy_operator() {
114115
generate_driver "${RBD_DRIVER_NAME}"
115116
generate_driver "${CEPHFS_DRIVER_NAME}"
116117
generate_driver "${NFS_DRIVER_NAME}"
118+
generate_driver "${NVMEOF_DRIVER_NAME}"
117119

118120
# Display the contents of the generated files for debugging
119121
for file in "${TEMP_DIR}"/*; do
@@ -129,6 +131,7 @@ function cleanup() {
129131
generate_driver "${RBD_DRIVER_NAME}"
130132
generate_driver "${CEPHFS_DRIVER_NAME}"
131133
generate_driver "${NFS_DRIVER_NAME}"
134+
generate_driver "${NVMEOF_DRIVER_NAME}"
132135
generate_operator_config
133136

134137
# Delete all the generated files at once

0 commit comments

Comments
 (0)