Operations¶
This section covers operational aspects of running Pingora Gateway Controller in production.
Sections¶
-
Troubleshooting
Common issues and their solutions for debugging controller and proxy problems.
-
Metrics Reference
Complete reference of all Prometheus metrics exposed by the controller.
-
Manual Installation
Step-by-step guide for installing without Helm using raw Kubernetes manifests.
Quick Commands¶
Check Controller Status¶
kubectl get pods --namespace pingora-system
kubectl logs --selector app.kubernetes.io/name=pingora-gateway-controller \
--namespace pingora-system --tail=100
Check Route Status¶
Check Gateway Status¶
Check PingoraConfig¶
Health Checks¶
Controller Health¶
kubectl exec -it deployment/pingora-gateway-controller \
--namespace pingora-system -- wget -qO- http://localhost:8081/healthz
Proxy Health¶
kubectl exec -it deployment/pingora-gateway-controller-proxy \
--namespace pingora-system -- wget -qO- http://localhost:8081/health
Next Steps¶
- Review Troubleshooting for common issues
- Check Metrics for monitoring setup