You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
328 B
30 lines
328 B
2 years ago
|
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
|
||
|
)
|
||
|
|
||
2 years ago
|
for i in ${service[*]}
|
||
|
do
|
||
|
kubectl -n openim apply -f ./${i}/deployment.yaml
|
||
|
done
|
||
|
|