I have a API running on a pod (with kubernetes) it uses OAuth 2.0 with Auzre. When I send get/post request to it from Postman I get the following issue.
503: Service Temporarily Unavailable
And the Postman console says the following:
Warning: Certificate has expired 503: Service Temporarily Unavailable
Now on the pod there was no issue when I created the img and when I check the log with the following command:
kubectl logs (pod name) -n my-test-pod --kubeconfig=kubeconfig.yaml > logs.txt
I don't see any issues nor do I see anything that resembles a stack-trace indicating a issue with the get/post requests.
My questions are:
- What could cause this?
- Am I looking at the right logs (looking for the IMG stack-trace).
Kind regards.