From 9ffdab88d62c02c0236dd82e60c9e5a36639a1a3 Mon Sep 17 00:00:00 2001 From: "butrimova.a" Date: Wed, 31 Jan 2024 15:37:30 +0300 Subject: [PATCH 1/3] Changed maximum number of nodes in nodes_count --- website/docs/r/mks_nodegroup_v1.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/r/mks_nodegroup_v1.html.markdown b/website/docs/r/mks_nodegroup_v1.html.markdown index bea34768..b889d32f 100644 --- a/website/docs/r/mks_nodegroup_v1.html.markdown +++ b/website/docs/r/mks_nodegroup_v1.html.markdown @@ -56,7 +56,7 @@ resource "selectel_mks_nodegroup_v1" "nodegroup_1" { * `availability_zone` (Required) Pool segment where all nodes of the node group are located. Changing this creates a new node group. Learn more about available pool segments in the [Availability matrix](https://docs.selectel.ru/control-panel-actions/availability-matrix/#managed-kubernetes). -* `nodes_count` (Required) Number of worker nodes in the node group. The maximum number of nodes in a node group is 15. Changing this resizes the node group if `enable_autoscale` is false. +* `nodes_count` (Required) Number of worker nodes in the node group. The maximum number of nodes in a node group is 250. Changing this resizes the node group if `enable_autoscale` is false. * `cpus` (Optional) Number of CPU cores for each node. Can be skipped only when `flavor_id` is set. Changing this creates a new node group. Learn more about [Configurations](https://docs.selectel.ru/cloud/managed-kubernetes/node-groups/configurations/). From f95a62efdfc7a3f30adc0249b4fdc042cc948abc Mon Sep 17 00:00:00 2001 From: "butrimova.a" Date: Wed, 15 May 2024 15:30:39 +0300 Subject: [PATCH 2/3] Reverted changes for nodes --- website/docs/r/mks_nodegroup_v1.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/r/mks_nodegroup_v1.html.markdown b/website/docs/r/mks_nodegroup_v1.html.markdown index b889d32f..bea34768 100644 --- a/website/docs/r/mks_nodegroup_v1.html.markdown +++ b/website/docs/r/mks_nodegroup_v1.html.markdown @@ -56,7 +56,7 @@ resource "selectel_mks_nodegroup_v1" "nodegroup_1" { * `availability_zone` (Required) Pool segment where all nodes of the node group are located. Changing this creates a new node group. Learn more about available pool segments in the [Availability matrix](https://docs.selectel.ru/control-panel-actions/availability-matrix/#managed-kubernetes). -* `nodes_count` (Required) Number of worker nodes in the node group. The maximum number of nodes in a node group is 250. Changing this resizes the node group if `enable_autoscale` is false. +* `nodes_count` (Required) Number of worker nodes in the node group. The maximum number of nodes in a node group is 15. Changing this resizes the node group if `enable_autoscale` is false. * `cpus` (Optional) Number of CPU cores for each node. Can be skipped only when `flavor_id` is set. Changing this creates a new node group. Learn more about [Configurations](https://docs.selectel.ru/cloud/managed-kubernetes/node-groups/configurations/). From 7bda54c59aba6940f31f54c1403dafb6f9acc939 Mon Sep 17 00:00:00 2001 From: "butrimova.a" Date: Wed, 15 May 2024 15:45:44 +0300 Subject: [PATCH 3/3] Updated descrips for local_volume and volume_type --- website/docs/r/mks_nodegroup_v1.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/r/mks_nodegroup_v1.html.markdown b/website/docs/r/mks_nodegroup_v1.html.markdown index 0fc2c785..f07253d4 100644 --- a/website/docs/r/mks_nodegroup_v1.html.markdown +++ b/website/docs/r/mks_nodegroup_v1.html.markdown @@ -64,9 +64,9 @@ resource "selectel_mks_nodegroup_v1" "nodegroup_1" { * `volume_gb` (Optional) Volume size in GB for each node. Can be skipped only when flavor_id is set and local_volume is `true`. Changing this creates a new node group. Learn more about [Configurations](https://docs.selectel.ru/cloud/managed-kubernetes/node-groups/configurations/). -* `volume_type` (Optional) Type of an OpenStack blockstorage volume for each node. Can be skipped only when `flavor_id` is set and flavor contains disk specification. Changing this creates a new node group. Available volume types are `fast`, `basic`, and `universal`. The format is ``.``. Learn more about [Network volumes](https://docs.selectel.ru/cloud/servers/volumes/about-network-volumes/). +* `volume_type` (Optional) Type of an OpenStack blockstorage volume for each node. Can be skipped only when `flavor_id` is set and the flavor properties contain additional specifications for a local volume. Changing this creates a new node group. Available volume types are `fast`, `basic`, and `universal`. The format is ``.``. Learn more about [Network volumes](https://docs.selectel.ru/cloud/servers/volumes/about-network-volumes/). -* `local_volume` (Optional) Specifies if nodes use a local volume. Conflicts with flavors that have `local_volume` specs. Changing this creates a new node group. Boolean flag, the default value is false. +* `local_volume` (Optional) Specifies if nodes use a local volume. Cannot be used with the flavors that have specifications for a local volume. Changing this creates a new node group. Boolean flag, the default value is false. * `flavor_id` (Optional) Unique identifier of an OpenStack flavor for all nodes in the node group. Changing this creates a new node group. Learn more about [Flavors](https://docs.selectel.ru/cloud/managed-kubernetes/node-groups/configurations/#create-node-group-with-prebuilt-cloud-server-configuration).