Merge branch 'master' of https://git.webhosting.rug.nl/molgenis/molgenis-ops-docker-helm
This commit is contained in:
commit
d909c1bc07
|
@ -19,6 +19,10 @@ spec:
|
|||
app: {{ .Values.nexus.name }}
|
||||
creationTimestamp: null
|
||||
spec:
|
||||
volumes:
|
||||
- name: molgenis-nexus-data
|
||||
persistentVolumeClaim:
|
||||
claimName: molgenis-nexus-data
|
||||
restartPolicy: {{ .Values.nexus.restartPolicy }}
|
||||
containers:
|
||||
- name: {{ .Values.nexus.name }}
|
||||
|
@ -27,3 +31,7 @@ spec:
|
|||
ports:
|
||||
- containerPort: {{ .Values.nexus.port.ui }}
|
||||
- containerPort: {{ .Values.nexus.port.docker }}
|
||||
volumeMounts:
|
||||
- name: molgenis-nexus-data
|
||||
mountPath: "/nexus-data"
|
||||
|
||||
|
|
|
@ -7,10 +7,10 @@ metadata:
|
|||
spec:
|
||||
storageClassName: nfs-class
|
||||
capacity:
|
||||
storage: 5Gi
|
||||
storage: 50Gi
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
persistentVolumeReclaimPolicy: Retain
|
||||
nfs:
|
||||
server: 192.168.64.10
|
||||
path: /home/gcc/molgenis-nexus-data
|
||||
server: 192.168.64.12
|
||||
path: /gcc/molgenis/nexus-data
|
||||
|
|
|
@ -8,4 +8,4 @@ spec:
|
|||
- ReadWriteMany
|
||||
resources:
|
||||
requests:
|
||||
storage: 5Gi
|
||||
storage: 50Gi
|
Loading…
Reference in New Issue