Unable to pull Docker Hub image from GKE cluster
I want to run a container using my image, hosted in Docker Hub registry. I have this deployment: // --- spec: containers: - name: web image: "mycompany/myimage:1.0" imagePullPolicy: IfNotPresent - name: db image: postgres:13 imagePullSecrets: - name: dockerhub-secret // ---…