Files
open-im-server/deploy_k8s/kubectl_start_all.sh
T

32 lines
370 B
Bash
Raw Normal View History

2022-05-19 17:50:04 +08:00
service=(
#api service file
api
cms_api
#rpc service file
user
friend
group
auth
admin_cms
message_cms
statistics
office
organization
conversation
cache
msg_gateway
transfer
msg
push
sdk_server
demo
)
2022-05-30 20:43:19 +08:00
#mkdir -p /db/sdk #path for jssdk sqlite
2022-05-23 19:14:29 +08:00
2022-05-23 00:55:56 +08:00
for i in ${service[*]}
do
kubectl -n openim apply -f ./${i}/deployment.yaml
done