Skip to main content
Version: 1.3.0

Troubleshooting

If you need further assistance, contact our support team at support@avesha.io. We are here to help and will work with you to find a solution as quickly as possible.

Obliq AI SRE Agent Installation Issues

Common Issues

IssueResolution
ImagePullBackOffGet ACR credentials from support@aveshasystems.com
Pod failuresCheck logs with kubectl logs -n avesha <pod-name>.
External accessInstall optional ingress add-ons.

Known Warnings

The following are known warnings that can be safely ignored:

  • "Warning: unknown field \"spec.template.spec.containers[0].securityContext.fsGroup\"" - Kubernetes version compatibility
  • "Warning: spec.template.spec.containers[0].env[96]: hides previous definition of \"AWS_SECRET_ACCESS_KEY\"" - Environment variable precedence (non-breaking)

Troubleshooting Commands

ActionCommand
Check all pods with status.kubectl get pods -n avesha -o wide
View logs for backend service.kubectl logs -n avesha deployment/backend -f
View logs for orchestrator.kubectl logs -n avesha deployment/orchestrator -f
Check resource usage.kubectl top pods -n avesha
Describe pod for detailed information.kubectl describe pod -n avesha <pod-name>
Check service endpoints.kubectl get endpoints -n avesha
Restart all deployments.kubectl rollout restart deployment -n avesha
Get events sorted by time.kubectl get events -n avesha --sort-by='.lastTimestamp'