EX432 Exam Questions & Answers
Red Hat Certified Specialist in OpenShift Advanced Cluster Management • RedHat
100% money-back guarantee
Sample EX432 Questions
Practice with real exam-style questions, each with the verified correct answer and explanation.
SIMULATION
Task 42
Create a Placement that selects clusters in a ManagedClusterSet only
Ensure namespace has the correct ManagedClusterSetBinding.
Create placement in that namespace; only clusters visible via bound ClusterSet can be selected.
Verify placementdecision includes only clusters from that set.
This ties together ClusterSets (grouping) and Placement (selection).
SIMULATION
Task 25
Create a Placement for production clusters and limit placement to 2 clusters
Label clusters for prod:
oc label managedcluster cluster-prod1 environment=prod --overwrite
oc label managedcluster cluster-prod2 environment=prod --overwrite
Create Placement with numberOfClusters: 2:
cat <<'EOF' | oc apply -f -
apiVersion: cluster.open-cluster-management.io/v1beta1
kind: Placement
metadata:
name: prod-two-clusters
namespace: team-prod
spec:
numberOfClusters: 2
predicates:
- requiredClusterSelector:
labelSelector:
matchLabels:
environment: prod
EOF
Validate placement decisions:
oc get placementdecision -n team-prod
SIMULATION
Task 24
Deploy an application using Subscription + PlacementRule (legacy model)
Create a Channel (Git) and Subscription referencing it (example pattern).
In exams, you're usually given a repo URL and target namespace.
Ensure there is a placement rule/placement selecting clusters.
Apply manifests:
oc apply -f channel.yaml
oc apply -f subscription.yaml
Verify resources:
oc get channels.apps.open-cluster-management.io -A
oc get subscriptions.apps.open-cluster-management.io -A
oc get application.app.k8s.io -A
Why this matters:
Multi-cluster application lifecycle is part of ACM operations, and EX480 explicitly covers managing multi-cluster environments with ACM.
SIMULATION
Task 12
Create Overlay Directory (Kustomize)
Create overlay structure:
mkdir -p overlays/production
Confirm:
ls -R overlays
Why this matters:
Kustomize overlays let you maintain base manifests and environment-specific patches (production vs dev, etc.).
SIMULATION
Task 17
Create a namespace for a team and bind a ManagedClusterSet to that namespace
Create a namespace for the team:
oc new-project team-dev
Create ManagedClusterSetBinding to bind ClusterSet development into team-dev:
cat <<'EOF' | oc apply -f -
apiVersion: cluster.open-cluster-management.io/v1beta2
kind: ManagedClusterSetBinding
metadata:
name: development
namespace: team-dev
spec:
clusterSet: development
EOF
Verify:
oc get managedclustersetbinding -n team-dev
Why this matters:
ClusterSet binding is foundational for scoping access and enabling teams to work only with clusters in their set.
Get access to all 45 verified questions with detailed answers.
Unlock All EX432 Questions