mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-02-14 10:00:11 +00:00
Some checks failed
Scorecard supply-chain security / Scorecard analysis (push) Failing after 3m20s
Post / coverage (push) Failing after 26m0s
Post / images (amd64) (push) Failing after 3m12s
Post / images (arm64) (push) Failing after 3m9s
Post / image manifest (push) Has been skipped
Post / trigger clusteradm e2e (push) Has been skipped
Close stale issues and PRs / stale (push) Successful in 54s
Signed-off-by: Mike Ng <ming@redhat.com>
19 lines
888 B
Markdown
19 lines
888 B
Markdown
# Troubleshooting
|
|
|
|
#### For Argo CD components, check the following containers for logs:
|
|
* argocd-pull-integration-* in the `argocd` namespace (only on the hub cluster)
|
|
* argocd-applicationset-controller in the `argocd` namespace
|
|
* argocd-application-controller (only on managed clusters) in the `argocd` namespace
|
|
|
|
#### If the ApplicationSet contains the following status:
|
|
```
|
|
status:
|
|
conditions:
|
|
- lastTransitionTime: "2023-03-21T11:25:06Z"
|
|
message: Successfully generated parameters for all Applications
|
|
reason: ApplicationSetUpToDate
|
|
status: "False"
|
|
type: ErrorOccurred
|
|
```
|
|
Despite the type `ErrorOccurred`, the status is `"False"`, which means the ApplicationSet has been reconciled successfully. If the status is `"True"`, check the error message. If needed, check the `argocd-applicationset-controller` pod logs in the `argocd` namespace.
|