Skip to content

Commit

Permalink
Merge pull request #17 from azamara/vnks_support_lb_public_subnet
Browse files Browse the repository at this point in the history
refactor(vnks): update support lb public subnet for sgn
  • Loading branch information
jj41 authored Dec 3, 2021
2 parents 4c00532 + 104de0d commit ba84c12
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions services/vnks/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ type Cluster struct {
// 로드밸런서 전용 서브넷 No
SubnetLbNo *int32 `json:"subnetLbNo"`

// 로드밸런서 전용 Public Subnet No
LbPublicSubnetNo *int32 `json:"lbPublicSubnetNo,omitempty"`

// 서브넷 이름
SubnetName *string `json:"subnetName"`

Expand Down
3 changes: 3 additions & 0 deletions services/vnks/cluster_input_body.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ type ClusterInputBody struct {
// 로드밸런서 전용 서브넷 No
SubnetLbNo *int32 `json:"subnetLbNo"`

// 로드밸런서 전용 Public Subnet No
LbPublicSubnetNo *int32 `json:"lbPublicSubnetNo,omitempty"`

// log
Log *ClusterLogInput `json:"log,omitempty"`

Expand Down
1 change: 1 addition & 0 deletions services/vnks/docs/Cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Name | Type | Description | Notes
**Status** | ***string** | 클러스터의 상태 | [default to null]
**SubnetLbName** | ***string** | 로드밸런서 전용 서브넷 이름 | [default to null]
**SubnetLbNo** | ***int32** | 로드밸런서 전용 서브넷 No | [default to null]
**LbPublicSubnetNo** | ***int32** | 로드밸런서 전용 Public Subnet No | [optional] [default to null]
**SubnetName** | ***string** | 서브넷 이름 | [default to null]
**SubnetNoList** | **[]\*int32** | 서브넷 No 목록 | [default to null]
**UpdatedAt** | ***string** | 최근 업데이트 일자 | [default to null]
Expand Down
1 change: 1 addition & 0 deletions services/vnks/docs/ClusterInputBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Name | Type | Description | Notes
**VpcNo** | ***int32** | vpc의 No | [default to null]
**SubnetNoList** | **[]\*int32** | 서브넷 No 목록 | [default to null]
**SubnetLbNo** | ***int32** | 로드밸런서 전용 서브넷 No | [default to null]
**LbPublicSubnetNo** | ***int32** | 로드밸런서 전용 Public Subnet No | [optional] [default to null]
**Log** | **[*ClusterLogInput](ClusterLogInput.md)** | log | [optional] [default to null]
**DefaultNodePool** | **[*DefaultNodePoolParam](DefaultNodePoolParam.md)** | 기본 노드풀 | [optional] [default to null]
**NodePool** | **[[]\*NodePool](NodePool.md)** | 추가 노드풀 | [optional] [default to null]
Expand Down

0 comments on commit ba84c12

Please sign in to comment.