flux-troubleshooting

Use when Flux resources show Ready False, reconciliation errors appear in logs, deployments fail to sync from Git, HelmRelease installations fail, source artifacts are not being fetched, or image automation is not updating tags

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "flux-troubleshooting" with this command: npx skills add foxj77/claude-code-skills/foxj77-claude-code-skills-flux-troubleshooting

Flux CD Troubleshooting

Diagnose Flux CD reconciliation failures and errors in GitOps environments.

Keywords

flux, fluxcd, troubleshooting, debug, error, failed, failure, reconciliation, kustomization, helmrelease, source, gitrepository, ocirepository, artifact, health check, diagnose, resolve, fix

When to Use This Skill

  • Flux resources show Ready: False status
  • Reconciliation errors appear in logs
  • Deployments are not syncing from Git
  • HelmRelease installations are failing
  • Source artifacts are not being fetched
  • Image automation is not updating tags

Related Skills

Quick Reference

TaskCommand
Check Flux healthflux check
View all errorsflux logs -A --level=error
Get all statusflux get all -A
Warning eventskubectl get events -n flux-system --field-selector type=Warning

Diagnostic Workflow

Is the resource Ready?
├─ Yes → Check if correct version/revision deployed
└─ No → Is the source Ready?
    ├─ Yes → Check Kustomization/HelmRelease logs
    │   ├─ dry-run failed → Fix YAML syntax in Git
    │   ├─ health check timeout → Check pod logs/resources
    │   └─ dependency not ready → Fix parent first
    └─ No → Check source credentials/connectivity
        ├─ authentication failed → Update deploy key/secret
        ├─ checkout failed → Verify branch/tag exists
        └─ artifact not found → Check repository URL

Diagnostic Commands

1. Check Controller Health

flux check

2. View Error Logs

flux logs --all-namespaces --level=error

3. Get Warning Events

kubectl get events -n flux-system --field-selector type=Warning

4. Inspect Resource Status

flux get kustomizations -A
flux get helmreleases -A
flux get sources all -A

5. Controller-Specific Logs

kubectl logs -n flux-system deploy/source-controller
kubectl logs -n flux-system deploy/kustomize-controller
kubectl logs -n flux-system deploy/helm-controller
kubectl logs -n flux-system deploy/notification-controller
kubectl logs -n flux-system deploy/image-reflector-controller
kubectl logs -n flux-system deploy/image-automation-controller

Error Pattern Reference

Error PatternCauseGitOps Solution
failed to checkoutGit authentication or networkVerify deploy keys/credentials
dry-run failed: InvalidInvalid manifest YAMLFix syntax in Git repository
health check timeoutPods not becoming readyCheck resource limits, images
dependency not readyParent Kustomization failedFix upstream dependency first
artifact not foundSource not syncedCheck source status, reconcile
Unsupported valueInvalid field valueCorrect the value in Git
UNAUTHORIZEDRegistry auth failedCheck imagePullSecrets
MANIFEST_UNKNOWNOCI tag doesn't existVerify tag in registry

OCI Repository Troubleshooting

Common OCI Issues

flux get sources oci -A
kubectl logs -n flux-system deploy/source-controller | grep -i oci
kubectl get secret -n flux-system flux-system -o jsonpath='{.data.\.dockerconfigjson}' | base64 -d

OCI Error Patterns

ErrorCauseDiagnostic
UNAUTHORIZEDInvalid credentialsCheck docker-registry secret exists and is not expired; recommend updating secret
MANIFEST_UNKNOWNTag not foundVerify tag exists in registry
DENIEDPermission deniedCheck registry permissions for the service account
NAME_UNKNOWNRepository not foundVerify repository path in OCIRepository spec

Image Automation Troubleshooting

Check Image Policies

flux get images policy -A
flux get images repository -A
flux get images update -A

Image Automation Errors

ErrorCauseDiagnostic
no new images foundFilter too restrictiveCheck semver/regex pattern against available tags; recommend adjusting filter
access deniedRegistry authCheck image pull secrets configuration
failed to pushGit write accessCheck if deploy key has write permission

Webhook/Notification Debugging

kubectl logs -n flux-system deploy/notification-controller
flux get alerts -A
flux get alert-providers -A
kubectl logs -n flux-system deploy/notification-controller | grep -i receiver

Structured Log Analysis

{
  "level": "error",
  "ts": "2024-01-15T09:36:41.286Z",
  "controllerGroup": "kustomize.toolkit.fluxcd.io",
  "controllerKind": "Kustomization",
  "name": "resource-name",
  "namespace": "namespace",
  "msg": "Reconciliation failed after 2s, next try in 5m0s",
  "revision": "main@sha1:abc123",
  "error": "specific error message"
}

GitOps Principles for Troubleshooting

  1. Never fix directly in cluster - Identify root cause, fix in Git
  2. Suspend before debugging - Prevent Flux from reverting test changes
  3. Check the full dependency chain - Infrastructure before apps
  4. Verify source availability - Git repos and registries must be accessible
  5. Review recent commits - Issues often correlate with recent changes

MCP Tools Available

When the Flux MCP server is connected:

  • mcp__flux-operator-mcp__get_flux_instance - Get Flux installation status
  • mcp__flux-operator-mcp__get_kubernetes_logs - Get pod logs
  • mcp__flux-operator-mcp__get_kubernetes_resources - Query resources
  • mcp__flux-operator-mcp__search_flux_docs - Search Flux documentation

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

k8s-platform-operations

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

helm-chart-maintenance

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

flux-gitops-patterns

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

k8s-continual-improvement

No summary provided by upstream source.

Repository SourceNeeds Review