Install
openclaw skills install argocd-deployment-analyzerAnalyze ArgoCD application sync status, detect configuration drift, review manifests for security and best practices, and diagnose sync failures.
openclaw skills install argocd-deployment-analyzerDeep-dive analysis of ArgoCD-managed applications — detect sync drift, diagnose failed syncs, audit manifest security, review sync policies, and validate ArgoCD configurations against production best practices. Turns ArgoCD operational noise into actionable findings.
Use when: "analyze argocd apps", "why is my argocd app out of sync", "review argocd config", "audit gitops deployments", "diagnose sync failure", or when ArgoCD applications are degraded, drifting, or misconfigured.
The agent checks for access to ArgoCD:
# CLI access
argocd version --client
# Logged in
argocd account get-user-info
# Or: kubectl access to ArgoCD namespace
kubectl get applications.argoproj.io -n argocd
# Or: ArgoCD API access
curl -s https://argocd.example.com/api/v1/applications \
-H "Authorization: Bearer $ARGOCD_TOKEN" | jq '.items | length'
Provide one or more of:
production/api-server)all to analyze every applicationsync, security, health, drift, config, or allExample invocations:
Analyze why the
payments-serviceArgoCD app keeps going OutOfSync.
Security audit all ArgoCD applications in the
productionproject.
Review our ArgoCD ApplicationSet configurations for best practices.
Gather the full picture of all ArgoCD-managed applications:
# List all applications with status
argocd app list -o json | jq '[.[] | {
name: .metadata.name,
project: .spec.project,
syncStatus: .status.sync.status,
healthStatus: .status.health.status,
repo: .spec.source.repoURL,
path: .spec.source.path,
targetRevision: .spec.source.targetRevision,
destination: .spec.destination.server,
namespace: .spec.destination.namespace,
syncPolicy: .spec.syncPolicy
}]'
# Or via kubectl
kubectl get applications.argoproj.io -n argocd -o json | jq '[.items[] | {
name: .metadata.name,
sync: .status.sync.status,
health: .status.health.status
}]'
Classify applications into categories:
For each OutOfSync application, identify what drifted and why:
# Get the diff between live and desired state
argocd app diff <app-name> --local-repo-root /path/to/repo
# Detailed sync status with resource-level breakdown
argocd app get <app-name> -o json | jq '{
syncStatus: .status.sync.status,
revision: .status.sync.revision,
comparedTo: .status.sync.comparedTo,
resources: [.status.resources[] | select(.status != "Synced") | {
kind: .kind,
name: .name,
namespace: .namespace,
status: .status,
health: .health.status,
message: .health.message
}]
}'
# Check sync history for patterns
argocd app get <app-name> -o json | jq '[.status.history[] | {
revision: .revision[:8],
deployedAt: .deployedAt,
source: .source.path
}]'
Common drift causes the agent checks:
When sync operations fail, diagnose the root cause:
# Get sync operation result
argocd app get <app-name> -o json | jq '.status.operationState | {
phase: .phase,
message: .message,
startedAt: .startedAt,
finishedAt: .finishedAt,
syncResult: .syncResult.resources | map(select(.status != "Synced"))
}'
# Check for resource-level errors
argocd app resources <app-name> --orphaned
# Check events on the target namespace
kubectl get events -n <namespace> --sort-by='.lastTimestamp' | tail -20
Failure categories the agent identifies:
| Category | Symptoms | Typical Fix |
|---|---|---|
| RBAC | forbidden errors in sync | Fix ArgoCD service account permissions |
| Schema validation | validation failed | Fix manifest against CRD/API schema |
| Namespace missing | namespace not found | Create namespace or enable auto-create |
| Resource conflict | already exists | Check for duplicate resource management |
| Quota exceeded | exceeded quota | Request quota increase or reduce resource requests |
| Immutable field | field is immutable | Delete and recreate the resource |
| Dependency order | resource X not found | Add sync waves or sync ordering |
| Timeout | deadline exceeded | Increase sync timeout or fix health check |
Evaluate application health and identify degraded components:
# Health of each resource in the app
argocd app get <app-name> -o json | jq '[.status.resources[] | {
kind: .kind,
name: .name,
health: .health.status,
message: .health.message
}] | group_by(.health) | map({status: .[0].health, count: length, resources: map(.name)})'
# Pod-level issues for Degraded deployments
kubectl get pods -n <namespace> -l app=<app-label> -o json | jq '[.items[] | {
name: .metadata.name,
phase: .status.phase,
ready: ([.status.conditions[] | select(.type=="Ready")] | .[0].status),
restarts: ([.status.containerStatuses[].restartCount] | add),
waiting: [.status.containerStatuses[] | select(.state.waiting) | .state.waiting.reason]
}]'
Review ArgoCD Application and Project configurations for security and best practices:
Sync policy analysis:
# Check for dangerous sync policies
argocd app list -o json | jq '[.[] | select(
.spec.syncPolicy.automated.prune == true and
.spec.syncPolicy.automated.selfHeal == true
) | {name: .metadata.name, warning: "auto-prune + self-heal enabled"}]'
Checks performed:
* server or namespace defeats RBACAudit manifests managed by ArgoCD applications for security issues:
# Extract rendered manifests
argocd app manifests <app-name> --source live > /tmp/live-manifests.yaml
argocd app manifests <app-name> --source git > /tmp/git-manifests.yaml
Security checks:
privileged: truereadOnlyRootFilesystem, runAsNonRoothostNetwork, hostPID, hostIPC enabled:latest tag or no tagIf ApplicationSets are used, validate their generators and templates:
kubectl get applicationsets -n argocd -o json | jq '[.items[] | {
name: .metadata.name,
generators: [.spec.generators[] | keys[0]],
template: .spec.template.spec.source.repoURL,
syncPolicy: .spec.template.spec.syncPolicy
}]'
Checks:
preserveResourcesOnDeletion (deleting the AppSet deletes all apps)goTemplate validation (template injection risk)The agent produces a structured report:
HPA replica drift:
spec:
ignoreDifferences:
- group: apps
kind: Deployment
jsonPointers:
- /spec/replicas
Mutating webhook annotations:
spec:
ignoreDifferences:
- group: ""
kind: Service
jqPathExpressions:
- .metadata.annotations["webhook.example.com/injected"]
Sync wave ordering for dependencies: Use argocd.argoproj.io/sync-wave annotations: -1 for namespaces, 0 for ConfigMaps/Secrets, 1 for Deployments/Services.