aboutsummaryrefslogtreecommitdiffstats
path: root/functest_kubernetes/ims/cassandra-depl.yaml
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2020-07-06 20:09:41 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2020-07-06 20:11:57 +0200
commit018e15bd3daad54121e9f9a6cf6d904eaf9a705e (patch)
tree21dcddf64d1ff47a64e9ad32935c17869f4b607a /functest_kubernetes/ims/cassandra-depl.yaml
parent90832c83da1afbdd97a7f00e9ed37b137d0abce5 (diff)
Manage Ims service dependencies
Change-Id: I6647d9acfabd2ce2d12ff2f30393c2de8f6165ff Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit 68b2a9ac43003840ae0b88bf3b2cd6c1fc10db21)
Diffstat (limited to 'functest_kubernetes/ims/cassandra-depl.yaml')
-rw-r--r--functest_kubernetes/ims/cassandra-depl.yaml10
1 files changed, 10 insertions, 0 deletions
diff --git a/functest_kubernetes/ims/cassandra-depl.yaml b/functest_kubernetes/ims/cassandra-depl.yaml
index 053bd3f3..4e415ad7 100644
--- a/functest_kubernetes/ims/cassandra-depl.yaml
+++ b/functest_kubernetes/ims/cassandra-depl.yaml
@@ -12,6 +12,16 @@ spec:
labels:
service: cassandra
spec:
+ initContainers:
+ - name: wait-on-etcd
+ image: busybox:1.28
+ command: ['sh', '-c', 'until nslookup etcd; do echo waiting for etcd to start ...; sleep 2; done']
+ - name: wait-on-astaire
+ image: busybox:1.28
+ command: ['sh', '-c', 'until nslookup astaire; do echo waiting for astaire to start ...; sleep 2; done']
+ - name: wait-on-chronos
+ image: busybox:1.28
+ command: ['sh', '-c', 'until nslookup chronos; do echo waiting for chronos to start ...; sleep 2; done']
containers:
- image: "ollivier/clearwater-cassandra:latest"
imagePullPolicy: Always