diff options
Diffstat (limited to 'certService/helm')
-rw-r--r-- | certService/helm/aaf-cert-service/templates/deployment.yaml | 4 | ||||
-rw-r--r-- | certService/helm/aaf-cert-service/values.yaml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/certService/helm/aaf-cert-service/templates/deployment.yaml b/certService/helm/aaf-cert-service/templates/deployment.yaml index 2e16cbca..f8b2d43f 100644 --- a/certService/helm/aaf-cert-service/templates/deployment.yaml +++ b/certService/helm/aaf-cert-service/templates/deployment.yaml @@ -25,13 +25,13 @@ spec: livenessProbe: httpGet: port: {{ .Values.containerPort }} - path: {{ .Values.healthcheck.path }} + path: {{ .Values.liveness.path }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} readinessProbe: httpGet: port: {{ .Values.containerPort }} - path: {{ .Values.healthcheck.path }} + path: {{ .Values.readiness.path }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} volumeMounts: diff --git a/certService/helm/aaf-cert-service/values.yaml b/certService/helm/aaf-cert-service/values.yaml index a971edd4..0dab1e32 100644 --- a/certService/helm/aaf-cert-service/values.yaml +++ b/certService/helm/aaf-cert-service/values.yaml @@ -9,11 +9,11 @@ service: liveness: initialDelaySeconds: 60 periodSeconds: 10 + path: /actuator/health readiness: initialDelaySeconds: 30 periodSeconds: 10 -healthcheck: - path: /actuator/health + path: /ready volume: name: aaf-cert-service-volume mountPath: /etc/onap/aaf/certservice |