mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
62 lines
1.7 KiB
Plaintext
62 lines
1.7 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * security/zero_trust_workload_identity_manageer/zero-trust-manager-configuration.adoc
|
|
|
|
:_mod-docs-content-type: CONCEPT
|
|
[id="zero-trust-manager-verify-operands_{context}"]
|
|
= Verify the health of the operands
|
|
|
|
[role="_abstract"]
|
|
View the status fields to verify the operational health of managed components. This information helps you confirm that the SPIRE Server, SPIRE Agent, SPIFFE CSI driver, and the SPIRE OIDC discovery provider operands are ready and functioning correctly.
|
|
|
|
* To verify the operands, run the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
oc get ZeroTrustWorkloadIdentityManager cluster -o yaml
|
|
----
|
|
+
|
|
.Example output
|
|
+
|
|
[source,yaml]
|
|
----
|
|
status:
|
|
conditions:
|
|
- lastTransitionTime: "2025-12-16T10:59:06Z"
|
|
message: All components are ready
|
|
reason: Ready
|
|
status: "True"
|
|
type: Ready
|
|
- lastTransitionTime: "2025-12-16T10:59:06Z"
|
|
message: All operand CRs are ready
|
|
reason: Ready
|
|
status: "True"
|
|
type: OperandsAvailable
|
|
operands:
|
|
- kind: SpireServer
|
|
message: Ready
|
|
name: cluster
|
|
ready: "true"
|
|
- kind: SpireAgent
|
|
message: Ready
|
|
name: cluster
|
|
ready: "true"
|
|
- kind: SpiffeCSIDriver
|
|
message: Ready
|
|
name: cluster
|
|
ready: "true"
|
|
- kind: SpireOIDCDiscoveryProvider
|
|
message: Ready
|
|
name: cluster
|
|
ready: "true"
|
|
# ...
|
|
----
|
|
|
|
This status is reflected when all operands are healthy and stable.
|
|
|
|
[IMPORTANT]
|
|
====
|
|
The Operator adds the owner reference for the `ZeroTrustWorkloadIdentityManager` CR on the other operands' CRs. This causes the operands' resources to be deleted once the `ZeroTrustWorkloadIdentityManager` CRs are deleted.
|
|
====
|
|
|