Anyone else having issues with valid pull requests Err-ing out :

LonnyBarry:
Anyone else having issues with valid pull requests Err-ing out :

LonnyBarry:
I am backing off of the environment for an hour or so and will try again later. @Mumshad Mannambeth, appears there’s some sort of env error preventing image pulls without authentication.

Mumshad Mannambeth:
Sorry about that. Thanks for reporting. We will look into it. @Vijin Palazhi

Ravi Paragi:

This looks to be restriction from docker hub,  I am using below to avoid this. But not sure if this helps in the practice labs.
imagePullPolicy: IfNotPresent

Paul French:
Yes I am also

Paul French:
FYI I got around this problem using https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/

Paul French:
It may suffice as a temporary solution, e.g. sample deployment example

controlplane $ cat nginx-dep.yaml 
apiVersion: apps/v1
kind: Deployment
metadata:
  creationTimestamp: null
  labels:
    app: nginx-app
  name: nginx-app
spec:
  replicas: 3
  selector:
    matchLabels:
      app: nginx-app
  strategy: {}
  template:
    metadata:
      creationTimestamp: null
      labels:
        app: nginx-app
    spec:
      containers:
      - image: nginx:1.11.10-alpine
        name: nginx
      imagePullSecrets:
      - name: regcred