diff options
author | Munir Ahmad <munir.ahmad@bell.ca> | 2019-03-26 08:17:11 -0400 |
---|---|---|
committer | Munir Ahmad <munir.ahmad@bell.ca> | 2019-03-26 08:19:36 -0400 |
commit | 597db668a5a0d3a516c151c50c406e9aebe7c481 (patch) | |
tree | 44b02c0d5d4563b04b6d0bcc4a5a17c3512c135d | |
parent | 4060d7c76a09458264720a4c17cb480964c8fd90 (diff) |
Add credentials for liveliness and readiness probe
Issue-ID: OOM-1743
Change-Id: Ic0051ca1a410a22f75043268cd5722a4e16dfed7
Signed-off-by: Munir Ahmad <munir.ahmad@bell.ca>
-rwxr-xr-x | kubernetes/cds/charts/blueprints-processor/templates/deployment.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
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: |