I am trying to configure azure kubernetes cluster and created one on the portal.dockerized .net core webapi project and also published the image to azure container register. After applying manifest file , i get the message of service created and also the external IP. however when I do get pods I get status "Pending" all the time
NAME READY STATUS RESTARTS AGE kubdemo1api-6c67bf759f-6slh2 0/1 Pending 0 6h here is my yaml manifest file, can someone suggest what is wrong here?
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: kubdemo1api labels: name: kubdemo1api spec: replicas: 1 strategy: rollingUpdate: maxSurge: 1 maxUnavailable: 1 type: RollingUpdate minReadySeconds: 30 selector: matchLabels: app: kubdemo1api template: metadata: labels: app: kubdemo1api version: "1.0" tier: backend spec: containers: - name: kubdemo1api livenessProbe: httpGet: path: / port: 80 initialDelaySeconds: 30 timeoutSeconds: 10 readinessProbe: httpGet: path: / port: 80 initialDelaySeconds: 30 timeoutSeconds: 10 image: my container registry image address resources: requests: cpu: 100m memory: 100Mi ports: - containerPort: 80 livenessProbe: httpGet: path: / port: 80 initialDelaySeconds: 30 timeoutSeconds: 10 readinessProbe: httpGet: path: / port: 80 initialDelaySeconds: 30 timeoutSeconds: 10 --- apiVersion: v1 kind: Service metadata: name: azkubdemoapi1 spec: ports: - port: 80 selector: app: kubdemo1api type: LoadBalancer EDIT: Output kubectl describe pods is this
here is it
Normal Scheduled 2m default-scheduler Successfully assigned default/kubdemo1api-697d5655c-64fnj to aks-agentpool-87689508-0 Normal Pulling 37s (x4 over 2m) kubelet, aks-agentpool-87689508-0 pulling image "myacrurl/azkubdemo:v2" Warning Failed 37s (x4 over 2m) kubelet, aks-agentpool-87689508-0 Failed to pull image "my acr url": [rpc error: code = Unknown desc = Error response from daemon: Get https://myacrurl/v2/azkubdemo/manifests/v2: unauthorized: authentication required, rpc error: code = Unknown desc = Error response from daemon: Get https://myacrurl/v2/azkubdemo/manifests/v2: unauthorized: authentication required] Warning Failed 37s (x4 over 2m) kubelet, aks-agentpool-87689508-0 Error: ErrImagePull Normal BackOff 23s (x6 over 2m) kubelet, aks-agentpool-87689508-0 Back-off pulling image "myacrlurl/azkubdemo:v2" Warning Failed 11s (x7 over 2m) kubelet, aks-agentpool-87689508-0 Error: ImagePullBackOff
kubectl describe pod kubdemo1api-6c67bf759f-6slh2imagePullSecretsto authenticate to your registry. See the example of ACR.