Hi. I’m running managed Kube with the latest version. When I do a CI/CD deployment from Gitlab, everything is green on Gitlab’s side, the deployment fires, but it will never successfully roll out in Kube. It stays stuck with an ImagePullBackOff error, unauthorized: HTTP Basic: Access denied. On the Kube side, one pod is upgraded, a fourth pod is created that displays this error, and the other two pods remain untouched.
If I manually delete the deployment before running the Gitlab pipeline, everything works. I’m at a loss for where I’m going wrong. I upgraded to more memory just to ensure it wasn’t a memory issue (I’m running basic nodes), but the problem persisted.
I moved over to Helm for deployments, but the problems persist. In both my Go application and my NGINX static content server, if I do not manually run
kubectl delete deployment
, the upgrade fails. I am forced to deal with application downtime. The entire point of rollingUpdate is to avoid that and I am at a loss for why it is failing.