You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/
2
2
replicaCount: 1
3
3
4
-
host: "msbi.ipb-halle.de"
5
-
pathPrefix: "MassBank"
6
-
7
4
postgresPassword: "massbank3adminpassword"
8
5
username: "massbank3"
9
6
password: "massbank3password"
10
7
database: "massbank3"
11
8
9
+
massbank3ReleaseName: massbank3
10
+
12
11
image:
13
12
repository: ipbhalle/massbank3-dbtool
14
13
tag: "dev"
15
14
pullPolicy: IfNotPresent
16
15
17
-
# This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
18
-
imagePullSecrets: []
19
-
# This is to override the chart name.
20
-
nameOverride: ""
21
-
fullnameOverride: ""
22
-
23
-
# This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/
24
-
serviceAccount:
25
-
# Specifies whether a service account should be created
26
-
create: true
27
-
# Automatically mount a ServiceAccount's API credentials?
28
-
automount: true
29
-
# Annotations to add to the service account
30
-
annotations: {}
31
-
# The name of the service account to use.
32
-
# If not set and create is true, a name is generated using the fullname template
33
-
name: ""
34
-
35
-
# This is for setting Kubernetes Annotations to a Pod.
36
-
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
37
-
podAnnotations: {}
38
16
# This is for setting Kubernetes Labels to a Pod.
39
17
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
Copy file name to clipboardExpand all lines: charts/massbank3-server/values.yaml
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,15 @@ postgresql:
49
49
extraVolumeMounts: |
50
50
- name: bingo-volume
51
51
mountPath: /opt/bingo-postgres
52
+
persistence:
53
+
size: 16Gi
54
+
resources:
55
+
requests:
56
+
memory: "2Gi"
57
+
cpu: "1"
58
+
limits:
59
+
memory: "4Gi"
60
+
cpu: "2"
52
61
53
62
# This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
0 commit comments