diff --git a/docs/getting-started/getting-started.md b/docs/getting-started/getting-started.md index 14c9a710..b692013b 100644 --- a/docs/getting-started/getting-started.md +++ b/docs/getting-started/getting-started.md @@ -198,10 +198,10 @@ Each node can be defined as one of the following three types: - `loadBalancer` - These nodes server as internal load balancers that expose the Kubernetes control plane at a single endpoint. - They are essential when more then one master node is configured in the cluster. + These nodes serve as external load balancers that expose the Kubernetes control plane at a single endpoint. + They are required when more then one master node is configured in the cluster. -This guide is focused on deploying a Kubernetes cluster with only one master node, which eliminates the need for internal load balancers. +This guide is focused on deploying a Kubernetes cluster with a single master node. However, if you are interested in creating a [multi-master](../../examples/multi-master-cluster) or [high-availability (HA)](../../examples/ha-cluster) cluster, please refer to the corresponding examples. To better understand this part, let's take a look at an example configuration: diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 6aea60f6..50bfc227 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -69,7 +69,7 @@ Verify the installation by checking the Kubitect version. ```sh kubitect --version -# kubitect version v3.3.1 +# kubitect version v3.4.0 ``` ## Enable shell autocomplete diff --git a/pkg/env/constants.go b/pkg/env/constants.go index e7bdceb3..0bbdb945 100644 --- a/pkg/env/constants.go +++ b/pkg/env/constants.go @@ -7,7 +7,7 @@ package env // Project related constants const ( ConstProjectUrl = "https://github.com/MusicDin/kubitect" - ConstProjectVersion = "v3.3.1" + ConstProjectVersion = "v3.4.0" ConstK3sURL = "https://github.com/MusicDin/k3s-ansible" ConstK3sVersion = "v0.0.1" ConstKubesprayUrl = "https://github.com/kubernetes-sigs/kubespray"