diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e45686..e88cfe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Version 1.4.4 +## Version 1.4.5 -### Features -- Added "Timeout" param to Config/LegacyConfig that allows configuring HTTP client timeout +### Bugfix +- Removed omitempty tag from field WithLB in cloudapi/k8s/create request diff --git a/pkg/cloudapi/k8s/create.go b/pkg/cloudapi/k8s/create.go index fb55622..fb9e0cc 100644 --- a/pkg/cloudapi/k8s/create.go +++ b/pkg/cloudapi/k8s/create.go @@ -101,7 +101,7 @@ type CreateRequest struct { // Create Kubernetes cluster with masters nodes behind load balancer if true. // Otherwise give all cluster nodes direct external addresses from selected ExtNet // Required: false - WithLB bool `url:"withLB,omitempty" json:"withLB,omitempty"` + WithLB bool `url:"withLB" json:"withLB"` // Text description of this Kubernetes cluster // Required: false