We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6279004 commit cfd65adCopy full SHA for cfd65ad
project-fortis-pipeline/ops/create-cluster.sh
@@ -220,6 +220,17 @@ EOF
220
chown "${user_name}:${user_name}" "${backup_upgrade_script}"
221
chmod +x "${backup_upgrade_script}"
222
223
+while :; do
224
+ services_pod="$(kubectl get po --selector='io.kompose.service=project-fortis-services' -o jsonpath='{.items[0].metadata.name}')"
225
+
226
+ if kubectl exec "${services_pod}" -- /usr/bin/wget -qO- "${feature_service_host}/features/name/paris" > /dev/null; do
227
+ break
228
+ else
229
+ echo "featureService not yet available, waiting..."
230
+ sleep 1m
231
+ fi
232
+done
233
234
echo "Finished. Now installing Spark helm chart."
235
./install-spark.sh \
236
"${cassandra_ip}" \
0 commit comments