release 3.5.0

This commit is contained in:
havelight-ee
2023-03-30 10:06:08 +09:00
parent c9ac62623a
commit 25d0ef82ea
37 changed files with 3576 additions and 2640 deletions

View File

@@ -1,8 +1,9 @@
#!/bin/bash
kubectl -n imxc wait --for=condition=ready pod/elasticsearch-1 --timeout=600s
namespace=$1
kubectl -n ${namespace} wait --for=condition=ready pod/elasticsearch-1 --timeout=600s
export ES_NODEPORT=`kubectl -n ${namespace} get svc elasticsearch -o jsonpath='{.spec.ports[*].nodePort}'`
export MASTER_IP=`kubectl get node -o wide | grep control-plane | awk '{print $6}'`