```[1/1] currentAttempt done. Last Error: USER::co...
# flyte-support
t
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?
f
The container could not come up. This is interesting
Is this is a pod template ?
Are you starting init containers
t
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? @freezing-airport-6809
maybe it’s a timeout issue, but are there some important timeout settings on flyte propeller that we need to be aware of? @glamorous-carpet-83516 @freezing-airport-6809
245 Views