How to make base cluster configuration changes
When you make base cluster configuration changes, you need to restart the base cluster to propagate those changes.
In general, as Administrator you perform the following steps:
- Make the necessary configuration changes in the base cluster.
- Restart the base cluster.
- In the Private Cloud compute cluster, perform the specific Kubernetes commands below to
restart the
ds-cdh-client
pods for CML.
For ECS:
- Access Cloudera Manager.
- Navigate to the Containerized Cluster ECS Web UI:
- Select the namespace of your ML Workspace on the top left dropdown.
- Navigate to .
- Locate
ds-cdh-client
in the list and perform Restart from the breadcrumbs on the right.
For OCP:
Access the openshift cluster with oc or kubectl,
and scale the deployment of ds-cdh-client
down and back up. Use the following commands.
oc scale deployment/ds-cdh-client --namespace <ml-namespace> --replicas 0
oc scale deployment/ds-cdh-client --namespace <ml-namespace> --replicas 1