Skip to content

Commit

Permalink
feat: machine autoscaler documentation (#2754)
Browse files Browse the repository at this point in the history
* feat: machine autoscaler documentation

Signed-off-by: dkwon17 <dakwon@redhat.com>

* Update modules/administration-guide/pages/configuring-autoscaling.adoc

Co-authored-by: Jana Vrbkova <jvrbkova@redhat.com>

* Fix PR feedback

Signed-off-by: dkwon17 <dakwon@redhat.com>

* Remove passive voice

Signed-off-by: dkwon17 <dakwon@redhat.com>

---------

Signed-off-by: dkwon17 <dakwon@redhat.com>
Co-authored-by: Jana Vrbkova <jvrbkova@redhat.com>
  • Loading branch information
dkwon17 and deerskindoll committed Jul 10, 2024
1 parent bb1157b commit 0856560
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/administration-guide/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@
** xref:configuring-server-components.adoc[]
*** xref:mounting-a-secret-as-a-file-or-an-environment-variable-into-a-container.adoc[]
*** xref:advanced-configuration-options-for-the-che-server-component.adoc[]
** xref:configuring-autoscaling.adoc[]
*** xref:configuring-number-of-replicas.adoc[]
*** xref:configuring-machine-autoscaling.adoc[]
** xref:configuring-workspaces-globally.adoc[]
*** xref:limiting-the-number-of-workspaces-that-a-user-can-keep.adoc[]
*** xref:enabling-users-to-run-multiple-workspaces-simultaneously.adoc[]
Expand Down
13 changes: 13 additions & 0 deletions modules/administration-guide/pages/configuring-autoscaling.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
:_content-type: ASSEMBLY
:description: Configuring autoscaling
:keywords: administration-guide, configuring, autoscaling, autoscale, horizontal, scaling, machine
:navtitle: Configuring autoscaling
:page-aliases:

[id="configuring-autoscaling"]
= Configuring autoscaling

Learn about different aspects of autoscaling for {prod}.

* xref:configuring-number-of-replicas.adoc[]
* xref:configuring-machine-autoscaling.adoc[]
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
:_content-type: PROCEDURE
:description: Configuring machine autoscaling
:keywords: administration guide, machine, autoscaling, scaling
:navtitle: Configuring machine autoscaling
:page-aliases:

[id="configuring-machine-autoscaling"]
= Configuring machine autoscaling

If you configured the cluster to adjust the number of nodes depending on resource needs, you need additional configuration to maintain the seamless operation of {prod-short} workspaces.

Workspaces need special consideration when the autoscaler adds and removes nodes.

When a new node is being added by the autoscaler, workspace startup can take longer than usual until the node provisioning is complete.

Conversely when a node is being removed, ideally nodes that are running workspace pods should not be evicted by the autoscaler to avoid any interruptions while using the workspace and potentially losing any unsaved data.

== When the autoscaler adds a new node
You need to make additional configurations to the {prod-short} installation to ensure proper workspace startup while a new node is being added.

.Procedure

. In the CheCluster Custom Resource, set the `spec.devEnvironments.startTimeoutSeconds` field to at least 600 seconds to allow time for a new node to be provisioned when needed during workspace startup.
+
[source,yaml,subs="+quotes,+attributes"]
----
spec:
devEnvironments:
startTimeoutSeconds: 600
----

. In the DevWorkspaceOperatorConfig Custom Resource in the {prod-namespace} namespace, add the `FailedScheduling` event to the `config.workpsace.ignoredUnrecoverableEvents` field. This allows the workspace startup to not fail if not enough nodes are available. When the new node is provisioned, this allows the workspace startup to continue.
+
[source,yaml,subs="+quotes,+attributes"]
----
config:
workspace:
ignoredUnrecoverableEvents:
- FailedScheduling
----

== When the autoscaler removes a node
To prevent workspace pods from being evicted when the autoscaler needs to remove a node, add the `"cluster-autoscaler.kubernetes.io/safe-to-evict": "true"` annotation to every workspace pod.

.Procedure

. In the CheCluster Custom Resource, add the `cluster-autoscaler.kubernetes.io/safe-to-evict: "true"` annotation in the `spec.devEnvironments.workspacesPodAnnotations` field.
+
[source,yaml,subs="+quotes,+attributes"]
----
spec:
devEnvironments:
workspacesPodAnnotations:
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
----

.Verification steps

. Start a workspace and verify that the workspace pod contains the `cluster-autoscaler.kubernetes.io/safe-to-evict: "true"` annotation.
+
[subs="+attributes,+quotes"]
----
$ {orch-cli} get pod __<workspace_pod_name>__ -o jsonpath='{.metadata.annotations.cluster-autoscaler\.kubernetes\.io/safe-to-evict}'
true
----

0 comments on commit 0856560

Please sign in to comment.