diff options
author | Mike Elliott <mike.elliott@amdocs.com> | 2018-10-15 11:43:53 -0400 |
---|---|---|
committer | Mike Elliott <mike.elliott@amdocs.com> | 2018-10-15 11:56:54 -0400 |
commit | a91e2bff84c3db46a0e26cc4279accf01b7a38bb (patch) | |
tree | 4d9cacd52551f5f0695d7a3d46b10ad65ba14f5e /kubernetes/aaf/charts/aaf-cs/templates/deployment.yaml | |
parent | 42cb9f11d8ef4756d9d51aca4c3bb08277b86869 (diff) |
Replace liveness probe & update images
Updating to latest snapshot images. File-based "wait"
being replaced with standard port-based liveness probe to
fix cassandra from not starting for AAF.
Change-Id: If08d6bbf766abfcebe14d23894cde9c21c96c510
Issue-ID: AAF-557
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
Diffstat (limited to 'kubernetes/aaf/charts/aaf-cs/templates/deployment.yaml')
-rw-r--r-- | kubernetes/aaf/charts/aaf-cs/templates/deployment.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/aaf/charts/aaf-cs/templates/deployment.yaml b/kubernetes/aaf/charts/aaf-cs/templates/deployment.yaml index e0d500c420..d52e877154 100644 --- a/kubernetes/aaf/charts/aaf-cs/templates/deployment.yaml +++ b/kubernetes/aaf/charts/aaf-cs/templates/deployment.yaml @@ -63,8 +63,8 @@ spec: periodSeconds: {{ .Values.liveness.periodSeconds }} {{ end -}} readinessProbe: - exec: - command: ["/bin/bash","/opt/app/aaf/cass_init/cmd.sh","wait"] + tcpSocket: + port: {{ .Values.service.internalPort3 }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} resources: |