From c06a3198f64b5f438068de9a034787956075df38 Mon Sep 17 00:00:00 2001 From: Tim Tkachev Date: Mon, 19 Jun 2023 15:06:31 +0300 Subject: [PATCH] v1.4.5 --- CHANGELOG.md | 6 +++--- pkg/cloudapi/k8s/create.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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