Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update apigw-manager to 3.0.1 #148

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sdks/apigw-manager/CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Change logs

### 3.0.1
- 修复指令 fetch_esb_public_key 指令参数问题

### 3.0.0
- 添加指令 add_related_apps,支持为网关添加关联应用
- definition.yaml 添加 spec_version 字段,指定配置文件版本号
Expand Down
6 changes: 3 additions & 3 deletions sdks/apigw-manager/docs/sync-apigateway-with-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ functions.sh 中的 bash 函数:
步骤2:在 chart values.yaml 中添加配置
```yaml
apigatewaySync:
image: "hub.bktencent.com/blueking/apigw-manager:3.0.0"
image: "hub.bktencent.com/blueking/apigw-manager:3.0.1"
configMapMounts:
- name: "sync-apigw-base"
filePath: "files/support-files/*"
Expand Down Expand Up @@ -202,7 +202,7 @@ spec:

步骤2. 构建 Dockerfile,参考:
```Dockerfile
FROM hub.bktencent.com/blueking/apigw-manager:3.0.0
FROM hub.bktencent.com/blueking/apigw-manager:3.0.1

COPY support-files /data/
```
Expand Down Expand Up @@ -251,7 +251,7 @@ docker run --rm \
-e BK_API_URL_TMPL=<BK_API_URL_TMPL> \
-e BK_APP_CODE=<BK_APP_CODE> \
-e BK_APP_SECRET=<BK_APP_SECRET> \
hub.bktencent.com/blueking/apigw-manager:3.0.0
hub.bktencent.com/blueking/apigw-manager:3.0.1
```


Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apigatewaySync:
enabled: true
image: "hub.bktencent.com/blueking/apigw-manager:3.0.0"
image: "hub.bktencent.com/blueking/apigw-manager:3.0.1"
configMapMounts:
- name: "sync-apigw-base"
filePath: "files/support-files/*"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM hub.bktencent.com/blueking/apigw-manager:3.0.0
FROM hub.bktencent.com/blueking/apigw-manager:3.0.1

COPY support-files /data/
2 changes: 1 addition & 1 deletion sdks/apigw-manager/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "apigw-manager"
version = "3.0.0"
version = "3.0.1"
description = "The SDK for managing blueking gateway resource."
readme = "README.md"
authors = ["blueking <blueking@tencent.com>"]
Expand Down