https://flyte.org logo
#ask-the-community
Title
# ask-the-community
x

Xinzhou Liu

05/22/2023, 4:14 PM
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

Ketan (kumare3)

05/22/2023, 4:35 PM
The container could not come up. This is interesting
Is this is a pod template ?
Are you starting init containers
x

Xinzhou Liu

05/22/2023, 4:36 PM
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)
16 Views