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.
12 lines
171 B
12 lines
171 B
3 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
3 years ago
|
source ./path_info.cfg
|
||
3 years ago
|
|
||
3 years ago
|
#mkdir -p /db/sdk #path for jssdk sqlite
|
||
3 years ago
|
|
||
3 years ago
|
for i in ${service[*]}
|
||
|
do
|
||
|
kubectl -n openim apply -f ./${i}/deployment.yaml
|
||
|
done
|
||
|
|