Hi there! I am trying out the flyte deployment on ...
# ask-the-community
g
Hi there! I am trying out the flyte deployment on eks, and followed the guide here; almost everything has been working fine so far, except for the
flytepropeller
that is crashlooping due to
Copy code
{"json":{},"level":"error","msg":"Failed to finalize enabled plugins. Error: cannot set default plugin [agent-service] for task types [[bigquery_query_job_task]] when it is not configured to be an enabled plugin","ts":"2023-08-03T15:09:37Z"}
{"json":{},"level":"panic","msg":"cannot set default plugin [agent-service] for task types [[bigquery_query_job_task]] when it is not configured to be an enabled plugin","ts":"2023-08-03T15:09:37Z"}
I am using the default eks values-eks.yaml file and I see these plugins as enabled
Copy code
enabled-plugins:
          - container
          - sidecar
          - k8s-array
I saw a related bugfix here. Any help? Thanks 🙂
g
let me give it a try, thanks 🙂
Could have searched around, my bad
I tried both
Copy code
enabled-plugins:
          - container
          - sidecar
          - k8s-array
          - bigquery_query_job_task
        default-for-task-types:
          container: container
          sidecar: sidecar
          container_array: k8s-array
          bigquery_query_job_task: agent-service
and
Copy code
enabled-plugins:
          - container
          - sidecar
          - k8s-array
        default-for-task-types:
          container: container
          sidecar: sidecar
          container_array: k8s-array
          bigquery_query_job_task: agent-service
but both of them give me the same error
I also tried
Copy code
enabled-plugins:
          - container
          - sidecar
          - k8s-array
          - bigquery_query_job_task
        default-for-task-types:
          container: container
          sidecar: sidecar
          container_array: k8s-array
Guess I need also to enable
- agent-service
For posterity, this did the trick
Copy code
enabled_plugins:
    tasks:
      task-plugins:
        enabled-plugins:
          - container
          - sidecar
          - k8s-array
          - agent-service
        default-for-task-types:
          container: container
          sidecar: sidecar
          container_array: k8s-array
          bigquery_query_job_task: agent-service