From b8f337c684951dd98249efc39f9157f461fbb37d Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Wed, 20 Mar 2024 16:38:55 +0100 Subject: [PATCH] remove pvc ceph for structure --- deploy/df-wiki/templates/deployment.yaml | 5 ----- deploy/df-wiki/templates/pvc-structure-ceph.yaml | 14 -------------- 2 files changed, 19 deletions(-) delete mode 100644 deploy/df-wiki/templates/pvc-structure-ceph.yaml diff --git a/deploy/df-wiki/templates/deployment.yaml b/deploy/df-wiki/templates/deployment.yaml index 9542cf36..fbb5031e 100644 --- a/deploy/df-wiki/templates/deployment.yaml +++ b/deploy/df-wiki/templates/deployment.yaml @@ -56,8 +56,6 @@ spec: mountPath: /etc/nginx/conf.d/ - name: structure-data-pvc mountPath: /usr/share/nginx/html - - name: structure-data-ceph - mountPath: /test-ceph - name: website-pvc mountPath: /website @@ -83,9 +81,6 @@ spec: - name: structure-data-pvc persistentVolumeClaim: claimName: structure-data-pvc - - name: structure-data-ceph - persistentVolumeClaim: - claimName: structure-data-ceph - name: website-pvc persistentVolumeClaim: claimName: website-pvc diff --git a/deploy/df-wiki/templates/pvc-structure-ceph.yaml b/deploy/df-wiki/templates/pvc-structure-ceph.yaml deleted file mode 100644 index 521bb420..00000000 --- a/deploy/df-wiki/templates/pvc-structure-ceph.yaml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: structure-data-ceph - annotations: - "helm.sh/resource-policy": keep -spec: - accessModes: - - ReadWriteMany - resources: - requests: - storage: 3Gi - storageClassName: ceph-block - volumeMode: Filesystem \ No newline at end of file -- GitLab