Update helm charts

This commit is contained in:
mattwr18 2020-02-10 10:46:55 +01:00
parent 5fad1bb628
commit 8f6d71e4be
7 changed files with 13 additions and 7 deletions

View File

@ -2,3 +2,5 @@ secrets.yaml
configmap.yaml
**/secrets.yaml
**/configmap.yaml
**/staging-values.yaml
**/production-values.yaml

View File

@ -64,7 +64,7 @@ $ helm install cert-manager --namespace cert-manager --version v0.13.0 jetstack/
Once you are satisfied with the configuration, you can install the app.
```bash
# in folder /deployment/helm
# in folder /deployment/helm/human-connection
$ helm install develop ./ --namespace human-connection
```
Where `develop` is the release name, in this case develop for our develop server and `human-connection` is the namespace, again customize for your needs. The release name can be anything you want. Just keep in mind that it is used in the templates to prepend the `CLIENT_URI` and other places.

View File

@ -7,4 +7,4 @@ spec:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
storage: {{ .Values.neo4jStorage }}

View File

@ -4,9 +4,13 @@ apiVersion: v1
metadata:
name: uploads-claim
spec:
dataSource:
name: uploads-snapshot
kind: VolumeSnapshot
apiGroup: snapshot.storage.k8s.io
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 8Gi
storage: {{ .Values.uploadsStorage }}

View File

@ -9,4 +9,4 @@
- ReadWriteOnce
resources:
requests:
storage: 5Gi
storage: {{ .Values.neo4jStorage }}

View File

@ -9,4 +9,4 @@
- ReadWriteOnce
resources:
requests:
storage: 8Gi
storage: {{ .Values.uploadsStorage }}

View File

@ -2,9 +2,9 @@
apiVersion: snapshot.storage.k8s.io/v1alpha1
kind: VolumeSnapshot
metadata:
name: neo4j-data-snapshot
name: uploads-snapshot
namespace: human-connection
spec:
source:
name: neo4j-data-claim
name: uploads-claim
kind: PersistentVolumeClaim