copyright | lastupdated | keywords | subcollection | ||
---|---|---|---|---|---|
|
2024-06-26 |
maintenance, host maintenance, notification, workers, offline |
openshift |
{{site.data.keyword.attribute-definition-list}}
{: #host-maintenance}
{{site.data.keyword.IBM_notm}} engineers perform host maintenance to improve stability, provide security enhancements, and support upcoming new features. {{site.data.keyword.cloud_notm}} infrastructure providers perform maintenance on the hosts that house the Virtual Servers that are used as workers in your cluster, which might cause some of your workers to briefly go offline. However, there are actions you can take before the maintenance period that can minimize disruptions to your worker nodes. A notification with maintenance details and a list of affected workers is sent to customers before the maintenance window. Follow these steps to prepare your workers for an upcoming maintenance period. {: shortdesc}
{: #worker-maintenance-list}
If your workers are scheduled to undergo maintenance, you receive a notification before the maintenance window begins. A list of the workers that are affected is included in the notification. {: shortdesc}
The list of impacted components might look similar to the following example. The steps documented here apply to the workers listed in the IBM Kubernetes Service or {{site.data.keyword.redhat_openshift_notm}} on IBM Cloud Workers section.
**Virtual Server Instances scheduled for maintenance**
Virtual Server Instances in your account:
ID Name
1111_1a111aaa-1a1a-1aa1-1111-a11a111a1111 my_vpc_cluster_1
Virtual Server Instances in service accounts:
Application Load Balancer
alb-11aa111a-1111111
IBM Kubernetes Service or Red Hat OpenShift on IBM Cloud workers
kube-aaaa1aaa111aa11aa11a-aaaaaaaaaaa-aaaaaaa-00001a11
kube-aaaa2aaa222aa22aa22a-aaaaaaaaaaa-aaaaaaa-00002a22
kube-aaaa3aaa333aa33aa33a-aaaaaaaaaaa-aaaaaaa-00003a33
{: screen}
{: #worker-maintenance-actions}
Follow these steps to prepare your workers for the maintenance period. Workers can't be scheduled on hosts that are scheduled for maintenance. You can avoid disruptions to your workload by rebooting or replacing your workers so that they move to different hosts that are not undergoing maintenance. {: shortdesc}
{: #worker-maintenance-classic}
Follow the steps to reboot the worker before the maintenance period begins. {: shortdesc}
-
Cordon the worker.
oc cordon <worker_id>
{: pre}
-
Drain the worker.
oc drain <worker_id>
{: pre}
-
Reboot the worker. Make sure you include the
--hard
option.ibmcloud oc worker reboot --cluster <cluster_name_or_id> --worker <worker_id> --hard
{: pre}
-
Mark the worker as available to be scheduled.
oc uncordon <worker_id>
{: pre}
{: #worker-maintenance-vpc}
For workers in VPC clusters, the steps to take depend on the flavor of the worker node. To check a worker node's flavor, run ibmcloud oc worker get --worker <worker_id> --cluster <cluster_name_or_id>
.
{: shortdesc}
For workers with the cx2.
, bx2.
, or mx2.
flavors:
-
Cordon the worker.
oc cordon <worker_id>
{: pre}
-
Drain the worker.
oc drain <worker_id>
{: pre}
-
Reboot the worker. Make sure you include the
--hard
option.ibmcloud oc worker reboot --cluster <cluster_name_or_id> --worker <worker_id> --hard
{: pre}
-
Mark the worker as available to be scheduled.
oc uncordon <worker_id>
{: pre}
For workers with the cx2d.
, bx2d.
, or mx2d.
flavors:
-
Cordon the worker.
oc cordon <worker_id>
{: pre}
-
Drain the worker.
oc drain <worker_id>
{: pre}
-
Replace the worker. A new worker node is provisioned on a host that is not undergoing maintenance.
ibmcloud oc worker replace --cluster <cluster_name_or_ID> --worker <worker_node_ID>
{: pre}