From 19340a666dcd43be86bf0f942a23ea2a928e2a4a Mon Sep 17 00:00:00 2001 From: Andrei Rebegea Date: Tue, 3 Apr 2018 13:17:40 +0300 Subject: [PATCH] REPO-3304: add persisted volume clame to make the community chart independent --- .gitignore | 3 ++- .../templates/pvc-acs.yaml | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 helm/alfresco-content-services-community/templates/pvc-acs.yaml diff --git a/.gitignore b/.gitignore index 4d1b992f3..5e7beabdd 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,5 @@ hs_err_pid* alf_data/ helm/alfresco-content-services-community/charts/* -helm/alfresco-content-services-community/requirements.lock \ No newline at end of file +helm/alfresco-content-services-community/requirements.lock +helm/alfresco-content-services-community*.tgz \ No newline at end of file diff --git a/helm/alfresco-content-services-community/templates/pvc-acs.yaml b/helm/alfresco-content-services-community/templates/pvc-acs.yaml new file mode 100644 index 000000000..381266217 --- /dev/null +++ b/helm/alfresco-content-services-community/templates/pvc-acs.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: alfresco-volume-claim +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 5Gi \ No newline at end of file