diff options
author | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-10-23 12:02:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-23 12:02:06 +0000 |
commit | 15b78630155396b9fa08bdaa3f4a28e7420cbcfb (patch) | |
tree | 031594f8ca10e4b4847bd0dcbd4782da5c9500c2 | |
parent | a1a8f9a4fd82afb60ed1ea99fd8088a11fde9d92 (diff) | |
parent | 11b0d6550f8a8be1eb2978b868ae77763db78d6a (diff) |
Merge "Fix the issue widget model issue"
-rw-r--r-- | templates/deployment.yaml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/templates/deployment.yaml b/templates/deployment.yaml index d32db17..3f16e25 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -39,7 +39,11 @@ spec: - /root/ready.py args: - --container-name + - aai-resources + - --container-name - aai-traversal + - --container-name + - aai-graphadmin env: - name: NAMESPACE valueFrom: @@ -75,8 +79,17 @@ spec: periodSeconds: {{ .Values.liveness.periodSeconds }} {{ end -}} readinessProbe: - tcpSocket: + httpGet: + path: /aai/util/echo port: {{ .Values.service.internalPort2 }} + scheme: HTTPS + httpHeaders: + - name: X-FromAppId + value: OOM_ReadinessCheck + - name: X-TransactionId + value: {{ uuidv4 }} + - name: Accept + value: application/json initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} resources: |