mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-10 23:07:30 +08:00
23 lines
288 B
Batchfile
23 lines
288 B
Batchfile
SET ROOT=%cd%
|
|
@echo off
|
|
set version=v2.2.0
|
|
for %%I in (
|
|
api
|
|
cms_api
|
|
user
|
|
friend
|
|
group
|
|
auth
|
|
admin_cms
|
|
office
|
|
organization
|
|
conversation
|
|
cache
|
|
msg_gateway
|
|
msg_transfer
|
|
msg
|
|
push
|
|
sdk_server
|
|
demo
|
|
) do kubectl -n openim apply -f ./%%I/deployment.yaml
|
|
cd %ROOT% |