You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note:** For ROSA HCP clusters, CloudTrail events only show customer account activity. Control plane activity is in Red Hat's account and not visible.
662
+
663
+
#### Cluster Snapshot
664
+
665
+
Capture a point-in-time snapshot of cluster state for evidence collection. The snapshot includes nodes, ClusterOperators, and namespaces.
Compare two cluster snapshots to identify changes. Useful for understanding what changed during feature testing.
681
+
682
+
```bash
683
+
# Compare two snapshots
684
+
osdctl cluster diff before.yaml after.yaml
685
+
686
+
# Compare snapshots with JSON output
687
+
osdctl cluster diff before.yaml after.yaml --json
688
+
```
689
+
690
+
Changes are categorized as:
691
+
-`+` added: Resource exists in after but not in before
692
+
-`-` removed: Resource exists in before but not in after
693
+
-`~` modified: Resource exists in both but with different values
694
+
695
+
#### Evidence Collection (All-in-One)
696
+
697
+
Collect comprehensive evidence from a cluster and AWS for feature testing. This all-in-one command gathers cluster state, CloudTrail events, and optionally Kubernetes events and must-gather output.
0 commit comments