From 49b78b8f290c6bb0ee857e2c213ea74d81307954 Mon Sep 17 00:00:00 2001 From: "Lott, Christopher (cl778h)" Date: Fri, 9 Aug 2019 08:46:44 -0400 Subject: [PATCH] Add delay to liveness, readiness probes Signed-off-by: Lott, Christopher (cl778h) Change-Id: I88cabbebf7958088c288a24c12f5205806e8440d --- .../80-Auxiliary-Functions/helm/dashboard/templates/deployment.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ric-aux/80-Auxiliary-Functions/helm/dashboard/templates/deployment.yaml b/ric-aux/80-Auxiliary-Functions/helm/dashboard/templates/deployment.yaml index f5561d7a..6c77a197 100644 --- a/ric-aux/80-Auxiliary-Functions/helm/dashboard/templates/deployment.yaml +++ b/ric-aux/80-Auxiliary-Functions/helm/dashboard/templates/deployment.yaml @@ -65,12 +65,14 @@ spec: mountPath: /dashboard-data livenessProbe: httpGet: - path: /api/admin/version + path: /api/admin/health port: http + initialDelaySeconds: 15 readinessProbe: httpGet: - path: /api/admin/health + path: /api/admin/version port: http + initialDelaySeconds: 15 volumes: - name: appconfig configMap: -- 2.16.6