aboutsummaryrefslogtreecommitdiffstats
path: root/certService/helm/aaf-cert-service/templates/deployment.yaml
diff options
context:
space:
mode:
authorBogumil Zebek <bogumil.zebek@nokia.com>2020-03-06 12:53:20 +0000
committerGerrit Code Review <gerrit@onap.org>2020-03-06 12:53:20 +0000
commit67385e0775a022a0c5877922edf141b128919deb (patch)
tree544bbfe25fd4a3315f7b9f7f1ce91dc8c8fe523d /certService/helm/aaf-cert-service/templates/deployment.yaml
parentb605cdbd7d54c22585b8834f4aa9a82e393d40ad (diff)
parent19b0e30a874d670849384276f44fffff8fdd1eef (diff)
Merge "Create Readiness Endpoint"
Diffstat (limited to 'certService/helm/aaf-cert-service/templates/deployment.yaml')
-rw-r--r--certService/helm/aaf-cert-service/templates/deployment.yaml4
1 files changed, 2 insertions, 2 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: