diff --git a/deploy/df-wiki/templates/deployment.yaml b/deploy/df-wiki/templates/deployment.yaml index c9f378b1571e9f9bf6fbb75b877e346c7450ddcc..8a362cad8a72b65dfe00b6f95f9772857141c70b 100644 --- a/deploy/df-wiki/templates/deployment.yaml +++ b/deploy/df-wiki/templates/deployment.yaml @@ -56,7 +56,9 @@ spec: mountPath: /etc/nginx/conf.d/ - name: structure-data-pvc mountPath: /structure-data - + - name: website-pvc + mountPath: /website + {{- with .Values.nodeSelector }} nodeSelector: @@ -79,3 +81,6 @@ spec: - name: structure-data-pvc persistentVolumeClaim: claimName: structure-data-pvc + - name: website-pvc + persistentVolumeClaim: + claimName: website-pvc diff --git a/deploy/df-wiki/templates/pvc-website.yaml b/deploy/df-wiki/templates/pvc-website.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ee06f21b7a4d30247da089bccdd9ae81bc5be921 --- /dev/null +++ b/deploy/df-wiki/templates/pvc-website.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: website-pvc + annotations: + "helm.sh/resource-policy": keep +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 1Gi + storageClassName: isilon + volumeMode: Filesystem \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 4796f6d6d72f6920cc876d96509f496ae7876f09..7253b32debde86f4054e4bc8a765f1cf55c099b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5703,10 +5703,6 @@ "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/file-saver": { - "version": "2.0.5", - "license": "MIT" - }, "node_modules/file-uri-to-path": { "version": "1.0.0", "dev": true,