The must gather script for Open Cluster Management allows a user to collect information about various key resources and namespaces that exist on your cluster.
oc adm must-gather --image=quay.io/open-cluster-management/must-gather:0.1.0-SNAPSHOT-2020-06-....
If you need the results to be saved in a named directory, then following the must-gather instructions, this can be run. Also added are commands to create a gzipped tarball:
oc adm must-gather --image=quay.io/open-cluster-management/must-gather:0.1.0-SNAPSHOT-2020-06-.... --dest-dir=SOMENAME ; tar -cvzf SOMENAME.tgz SOMENAME
In addition, if we need to collect must-gather for the OpenShift infrastructure, we can run:
oc adm must-gather
- The above must-gather command can understand where it is being run - Open Cluster Mangement Hub Server or Managed Cluster and collects data accordingly.
- If run on the Open Cluster Management Hub Server, it will also capture a list of Managed Clusters configured and the status. This is found in the
gather-managed.log
If a Managed Cluster reports a status of not equal to Ready when it is expected to be, then the must-gather command above should be run on the Managed Cluster as well.
Let us go through what is collected:
- The data is organized under 2 levels - cluster scoped resources and the resources that belong to namespaces (that we have decided to collect)
- The data is further organized by API group for the custom resource definitions. This is true for both cluster scope and namespace scoped resources.
- And we can see the Kind for the custom resource defintions.
- At the leaf level, we can see the
yaml for each of the custom resources for the kind
- This log contains the output of
kubectl get pods -n $NAMESPACE-IN-WHICH-OCM-RUNS-ON-HUB
. - If run on the Open-Cluster-Management Hub Server, the list of Managed Clusters configured and their status is captured in this log.
- The list of namespace for each the data is collected. And the output of one namespace is expanded. The other namespaces when expanded will look the same.
- This is the list of Pods running in each namespace. If a namespace does not contain any pods, this will be not be there.
Data collected for the PODs include:
If we take a look at the cluster-manager POD for example you will see the yaml file which contains detailed output of the POD. You can see the container called registration-operator and its logs.
#2021-07-12