File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ The following table lists the configurable parameters of the Harbor chart and th
181
181
| ` core.image.repository ` | Repository for Harbor core image | ` goharbor/harbor-core ` |
182
182
| ` core.image.tag ` | Tag for Harbor core image | ` dev ` |
183
183
| ` core.replicas ` | The replica count | ` 1 ` |
184
+ | ` core.livenessProbe.initialDelaySeconds ` | The initial delay in seconds for the liveness probe | ` 300 ` |
184
185
| ` core.resources ` | The [ resources] to allocate for container | undefined |
185
186
| ` core.nodeSelector ` | Node labels for pod assignment | ` {} ` |
186
187
| ` core.tolerations ` | Tolerations for pod assignment | ` [] ` |
Original file line number Diff line number Diff line change 38
38
httpGet :
39
39
path : /api/ping
40
40
port : 8080
41
- initialDelaySeconds : 20
41
+ initialDelaySeconds : {{ .Values.core.livenessProbe.initialDelaySeconds }}
42
42
periodSeconds : 10
43
43
readinessProbe :
44
44
httpGet :
Original file line number Diff line number Diff line change @@ -300,6 +300,9 @@ core:
300
300
repository : goharbor/harbor-core
301
301
tag : v1.9.1
302
302
replicas : 1
303
+ # # Liveness probe values
304
+ livenessProbe :
305
+ initialDelaySeconds : 300
303
306
# resources:
304
307
# requests:
305
308
# memory: 256Mi
You can’t perform that action at this time.
0 commit comments