diff options
author | a.sreekumar <ajith.sreekumar@bell.ca> | 2021-10-08 10:17:42 +0100 |
---|---|---|
committer | a.sreekumar <ajith.sreekumar@bell.ca> | 2021-10-08 10:19:16 +0100 |
commit | 05b548dd8a5b1fa14419d2be5e8487c3f8efa745 (patch) | |
tree | 9675690826ae3ab15275b206a83b549928c8e9eb /helm | |
parent | 826d9edd2492c3bbe492face3ce4d7fe0dd84b8a (diff) |
Fixing policy-models-simulators helm chart
Change-Id: I137be6241f934729d3452e308e24c454500ec86a
Issue-ID: POLICY-3655
Signed-off-by: a.sreekumar <ajith.sreekumar@bell.ca>
Diffstat (limited to 'helm')
-rw-r--r-- | helm/policy-models-simulator/templates/deployment.yaml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/helm/policy-models-simulator/templates/deployment.yaml b/helm/policy-models-simulator/templates/deployment.yaml index 02c49df7..84ba530d 100644 --- a/helm/policy-models-simulator/templates/deployment.yaml +++ b/helm/policy-models-simulator/templates/deployment.yaml @@ -44,16 +44,16 @@ spec: - /bin/bash - -c - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }' - initialDelaySeconds: 120 - periodSeconds: 20 + initialDelaySeconds: 120 + periodSeconds: 20 readinessProbe: exec: command: - /bin/bash - -c - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }' - initialDelaySeconds: 120 - periodSeconds: 20 + initialDelaySeconds: 120 + periodSeconds: 20 volumeMounts: - mountPath: /opt/app/policy/simulators/etc/mounted/ name: simconfig @@ -77,4 +77,3 @@ spec: configMap: name: {{ include "policy-models-simulator.fullname" . }}-configmap defaultMode: 0755 - |