added initialDelay
This commit is contained in:
parent
38f89721e7
commit
11b25a5df6
|
@ -53,10 +53,14 @@ spec:
|
|||
httpGet:
|
||||
path: /
|
||||
port: 8080
|
||||
initialDelaySeconds: 180
|
||||
periodSeconds: 5
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /api/v2/version
|
||||
port: 8080
|
||||
initialDelaySeconds: 180
|
||||
periodSeconds: 5
|
||||
resources:
|
||||
{{ toYaml .resources | indent 12 }}
|
||||
{{- end }}
|
||||
|
|
|
@ -24,12 +24,21 @@ molgenis:
|
|||
adminPassword: admin
|
||||
javaOpts: "-Xmx1g -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled"
|
||||
resources:
|
||||
limits:
|
||||
cpu: 1
|
||||
memory: 1250Mi
|
||||
requests:
|
||||
cpu: 200m
|
||||
memory: 1Gi
|
||||
limits:
|
||||
cpu: 1
|
||||
memory: 1250Mi
|
||||
requests:
|
||||
cpu: 200m
|
||||
memory: 1Gi
|
||||
persistence:
|
||||
enabled: false
|
||||
name: molgenis-nexus-data
|
||||
storageClass: nfs-class
|
||||
size: 30G
|
||||
reclaimPolicy: Retain
|
||||
server: 192.168.64.12
|
||||
accessMode: ReadWriteMany
|
||||
mountPath: /gcc/molgenis/nexus
|
||||
services:
|
||||
opencpu:
|
||||
host: localhost
|
||||
|
@ -57,6 +66,8 @@ elasticsearch:
|
|||
cpu: 100m
|
||||
memory: 1Gi
|
||||
|
||||
|
||||
|
||||
nodeSelector: {}
|
||||
|
||||
tolerations: []
|
||||
|
|
Loading…
Reference in New Issue