How to make base cluster configuration 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, run the specific kubernetes commands to restart the pods for CDE after identifying the correct CDE Service namespace.
Identifying the CDE Namespace
- Navigate to the Cloudera Data Engineering Overview page by clicking the Data Engineering tile in the Cloudera Data Platform (CDP) management console.
- In the CDE Services column, click the Service Details for the CDE service.
- Note the Cluster ID shown in the page. For example, if the Cluster ID is
cluster-abcd1234
, then the CDE Namespace isdex-base-abcd1234
. - Use this CDE Namespace (in the above example, it is
dex-base-abcd1234
) in the following instructions to run kubernetes commands.
Embedded Container Service
- Access Cloudera Manager.
- Navigate to the Experiences Cluster ECS Web UI: .
- Select the CDE namespace obtained previously on the top left dropdown.
- Navigate to .
- Locate
dex-base-configs-manager
in the list and click Restart from the breadcrumbs on the right.
OpenShift Container Platform
Access the openshift cluster with oc or
kubectl, and scale the deployment of
dex-base-configs-manager
down and back up. Use the following
commands:
oc scale deployment/dex-base-configs-manager --namespace <CDE Namespace> --replicas 0
oc scale deployment/dex-base-configs-manager --namespace <CDE Namespace> --replicas 1