Skip to content

Commit

Permalink
Staging v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yunkon-kim committed Nov 18, 2024
1 parent 5aaa0f3 commit 848438a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ networks:
services:
# CB-Tumblebug
cb-tumblebug:
image: cloudbaristaorg/cb-tumblebug:0.10.0
image: cloudbaristaorg/cb-tumblebug:0.10.1
container_name: cb-tumblebug
build:
context: .
Expand Down
2 changes: 1 addition & 1 deletion src/api/rest/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -9228,7 +9228,7 @@ const docTemplate = `{
}
},
"delete": {
"description": "Delete Subnet\n- refine: delete information of subnet if there's no info/resource in Spider/CSP\n- force: delete subnet regardless of the status of info/resource in Spider/CSP",
"description": "Delete Subnet\n- refine: delete a subnet ` + "`" + `object` + "`" + ` if there's no resource on CSP or no inforamation on Spider\n- force: force: delete a subnet ` + "`" + `resource` + "`" + ` on a CSP regardless of the current resource status (e.g., attempt to delete even if in use)",
"consumes": [
"application/json"
],
Expand Down
2 changes: 1 addition & 1 deletion src/api/rest/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -9221,7 +9221,7 @@
}
},
"delete": {
"description": "Delete Subnet\n- refine: delete information of subnet if there's no info/resource in Spider/CSP\n- force: delete subnet regardless of the status of info/resource in Spider/CSP",
"description": "Delete Subnet\n- refine: delete a subnet `object` if there's no resource on CSP or no inforamation on Spider\n- force: force: delete a subnet `resource` on a CSP regardless of the current resource status (e.g., attempt to delete even if in use)",
"consumes": [
"application/json"
],
Expand Down
4 changes: 2 additions & 2 deletions src/api/rest/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7034,8 +7034,8 @@ paths:
summary: "Delete Subnet (supporting actions: refine, force)"
description: |-
Delete Subnet
- refine: delete information of subnet if there's no info/resource in Spider/CSP
- force: delete subnet regardless of the status of info/resource in Spider/CSP
- refine: delete a subnet `object` if there's no resource on CSP or no inforamation on Spider
- force: force: delete a subnet `resource` on a CSP regardless of the current resource status (e.g., attempt to delete even if in use)
operationId: DelSubnet
parameters:
- name: nsId
Expand Down
4 changes: 2 additions & 2 deletions src/api/rest/server/resource/subnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ type RestGetAllSubnetResponse struct {
// @ID DelSubnet
// @Summary Delete Subnet (supporting actions: refine, force)
// @Description Delete Subnet
// @Description - refine: delete information of subnet if there's no info/resource in Spider/CSP
// @Description - force: delete subnet regardless of the status of info/resource in Spider/CSP
// @Description - refine: delete a subnet `object` if there's no resource on CSP or no inforamation on Spider
// @Description - force: force: delete a subnet `resource` on a CSP regardless of the current resource status (e.g., attempt to delete even if in use)
// @Tags [Infra Resource] Network Management
// @Accept json
// @Produce json
Expand Down

0 comments on commit 848438a

Please sign in to comment.