```[1/1] currentAttempt done. Last Error: USER::co...
# ask-the-community
x
Copy code
[1/1] currentAttempt done. Last Error: USER::containers with unready status: [primary]|context deadline exceeded
I’ve seen a few times such error. What would be the root cause of it?
k
The container could not come up. This is interesting
Is this is a pod template ?
Are you starting init containers
x
I don’t think I used pod template nor init containers, just normal startup. The pod template is used though
Copy code
apiVersion: v1
kind: PodTemplate
metadata:
  name: flyte-template
  namespace: app-development
template:
  spec:
    volumes:
      - name: data
        persistentVolumeClaim:
          claimName: fsx-app-development
          readOnly: true
    containers:
      - name: default
        image: <http://docker.io/rwgrim/docker-noop|docker.io/rwgrim/docker-noop>
        volumeMounts:
          - name: data
            mountPath: /data
            readOnly: true
Any idea what might be the cause? @Ketan (kumare3)
maybe it’s a timeout issue, but are there some important timeout settings on flyte propeller that we need to be aware of? @Kevin Su @Ketan (kumare3)
195 Views