fix: annotations, not labels (#36)

<picard face palm gif>

- purelb requires annotations not labels

Reviewed-on: #36
This commit is contained in:
2026-03-18 15:17:58 +11:00
parent e86cd7a6ae
commit 0a49537251
18 changed files with 396 additions and 2 deletions
@@ -0,0 +1,14 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../../base/csi-cephfs
helmCharts:
- name: ceph-csi-cephfs
repo: https://ceph.github.io/csi-charts
version: "3.15.0"
releaseName: ceph-csi-cephfs
namespace: csi-cephfs
valuesFile: values.yaml
@@ -0,0 +1,41 @@
csiConfig:
# raid6, 75% space efficiency
- clusterID: "cephfs_csi_ssd_ec_6_2"
monitors:
- "198.18.23.9:6789"
- "198.18.23.10:6789"
- "198.18.23.11:6789"
- "198.18.23.12:6789"
- "198.18.23.13:6789"
cephFS:
subvolumeGroup: csi_ssd_ec_6_2
# raid5, 80% space efficiency
- clusterID: "cephfs_csi_ssd_ec_4_1"
monitors:
- "198.18.23.9:6789"
- "198.18.23.10:6789"
- "198.18.23.11:6789"
- "198.18.23.12:6789"
- "198.18.23.13:6789"
cephFS:
subvolumeGroup: csi_ssd_ec_4_1
# Secret containing Ceph credentials
secret:
create: false
name: "csi-cephfs-secret"
# Storage class configuration (disabled - managed separately when needed)
storageClass:
create: false
# Provisioner configuration
provisioner:
name: csi-cephfs-provisioner
replicaCount: 3
# Image versions
image:
repository: quay.io/cephcsi/cephcsi
tag: v3.15.0
@@ -0,0 +1,14 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../../base/csi-cephrbd
helmCharts:
- name: ceph-csi-rbd
repo: https://ceph.github.io/csi-charts
version: "3.15.1"
releaseName: ceph-csi-rbd
namespace: csi-cephrbd
valuesFile: values.yaml
@@ -0,0 +1,48 @@
csiConfig:
- clusterID: "de96a98f-3d23-465a-a899-86d3d67edab8"
monitors:
- "198.18.23.9:6789"
- "198.18.23.10:6789"
- "198.18.23.11:6789"
- "198.18.23.12:6789"
- "198.18.23.13:6789"
# Secret containing Ceph credentials
secret:
create: false
name: "csi-rbd-secret"
# Storage class configuration (disabled - managed separately)
storageClass:
create: false
# CSI driver configuration
csiDriver:
name: "rbd.csi.ceph.com"
# Node plugin configuration
nodeplugin:
name: csi-rbdplugin
updateStrategy: RollingUpdate
# Provisioner configuration
provisioner:
name: csi-rbd-provisioner
replicaCount: 3
# Image versions
image:
repository: quay.io/cephcsi/cephcsi
tag: v3.15.0
# Enable snapshots
snapshotter:
image:
repository: registry.k8s.io/sig-storage/csi-snapshotter
tag: v8.0.1
# Enable volume expansion
resizer:
image:
repository: registry.k8s.io/sig-storage/csi-resizer
tag: v1.12.0