From 597db668a5a0d3a516c151c50c406e9aebe7c481 Mon Sep 17 00:00:00 2001 From: Munir Ahmad Date: Tue, 26 Mar 2019 08:17:11 -0400 Subject: [PATCH] Add credentials for liveliness and readiness probe Issue-ID: OOM-1743 Change-Id: Ic0051ca1a410a22f75043268cd5722a4e16dfed7 Signed-off-by: Munir Ahmad --- .../cds/charts/blueprints-processor/templates/deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kubernetes/cds/charts/blueprints-processor/templates/deployment.yaml b/kubernetes/cds/charts/blueprints-processor/templates/deployment.yaml index 94f2fd9152..876f24937d 100755 --- a/kubernetes/cds/charts/blueprints-processor/templates/deployment.yaml +++ b/kubernetes/cds/charts/blueprints-processor/templates/deployment.yaml @@ -64,6 +64,9 @@ spec: httpGet: path: /api/v1/execution-service/ping port: {{ .Values.service.http.internalPort }} + httpHeaders: + - name: Authorization + value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw== initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} {{ end }} @@ -71,6 +74,9 @@ spec: httpGet: path: /api/v1/execution-service/ping port: {{ .Values.service.http.internalPort }} + httpHeaders: + - name: Authorization + value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw== initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} volumeMounts: -- 2.16.6