Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50a4d5ade2 |
@@ -1,4 +1,4 @@
|
|||||||
## Version 1.6.1
|
## Version 1.6.3
|
||||||
|
|
||||||
### Bugfix
|
### Bugfix
|
||||||
- Fixed tags url and json CreateRequest in cloudapi/k8s/create and cloudbroker/k8s/create
|
- Fixed fields SysctlParams and ACL models RecordLB in ca/lb/models and models RecordLB and ItemLBList in cb/lb/models
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ type RecordLB struct {
|
|||||||
HAMode bool `json:"HAmode"`
|
HAMode bool `json:"HAmode"`
|
||||||
|
|
||||||
// Access Control List
|
// Access Control List
|
||||||
ACL []interface{} `json:"acl"`
|
ACL interface{} `json:"acl"`
|
||||||
|
|
||||||
// BackendHAIP
|
// BackendHAIP
|
||||||
BackendHAIP string `json:"backendHAIP"`
|
BackendHAIP string `json:"backendHAIP"`
|
||||||
@@ -78,7 +78,7 @@ type RecordLB struct {
|
|||||||
Status string `json:"status"`
|
Status string `json:"status"`
|
||||||
|
|
||||||
// Sysctl Params
|
// Sysctl Params
|
||||||
SysctlParams []interface{} `json:"sysctlParams"`
|
SysctlParams interface{} `json:"sysctlParams"`
|
||||||
|
|
||||||
// Tech status
|
// Tech status
|
||||||
TechStatus string `json:"techStatus"`
|
TechStatus string `json:"techStatus"`
|
||||||
|
|||||||
@@ -154,7 +154,7 @@ type RecordLB struct {
|
|||||||
Meta []interface{} `json:"_meta"`
|
Meta []interface{} `json:"_meta"`
|
||||||
|
|
||||||
// Access Control List
|
// Access Control List
|
||||||
ACL []interface{} `json:"acl"`
|
ACL interface{} `json:"acl"`
|
||||||
|
|
||||||
// BackendHAIP
|
// BackendHAIP
|
||||||
BackendHAIP string `json:"backendHAIP"`
|
BackendHAIP string `json:"backendHAIP"`
|
||||||
@@ -214,7 +214,7 @@ type RecordLB struct {
|
|||||||
Status string `json:"status"`
|
Status string `json:"status"`
|
||||||
|
|
||||||
// Sysctl Params
|
// Sysctl Params
|
||||||
SysctlParams []string `json:"sysctlParams"`
|
SysctlParams interface{} `json:"sysctlParams"`
|
||||||
|
|
||||||
// Tech status
|
// Tech status
|
||||||
TechStatus string `json:"techStatus"`
|
TechStatus string `json:"techStatus"`
|
||||||
@@ -229,7 +229,7 @@ type ItemLBList struct {
|
|||||||
HAMode bool `json:"HAmode"`
|
HAMode bool `json:"HAmode"`
|
||||||
|
|
||||||
// Access Control List
|
// Access Control List
|
||||||
ACL []interface{} `json:"acl"`
|
ACL interface{} `json:"acl"`
|
||||||
|
|
||||||
// BackendHAIP
|
// BackendHAIP
|
||||||
BackendHAIP string `json:"backendHAIP"`
|
BackendHAIP string `json:"backendHAIP"`
|
||||||
@@ -298,7 +298,7 @@ type ItemLBList struct {
|
|||||||
Status string `json:"status"`
|
Status string `json:"status"`
|
||||||
|
|
||||||
// Sysctl Params
|
// Sysctl Params
|
||||||
SysctlParams []string `json:"sysctlParams"`
|
SysctlParams interface{} `json:"sysctlParams"`
|
||||||
|
|
||||||
// Tech status
|
// Tech status
|
||||||
TechStatus string `json:"techStatus"`
|
TechStatus string `json:"techStatus"`
|
||||||
|
|||||||
Reference in New Issue
Block a user