Hello, What’s the minimum flyte version required f...
# ask-the-community
f
Hello, What’s the minimum flyte version required for agent-service plugin to work? https://flyte--4008.org.readthedocs.build/en/4008/deployment/agents/databricks.html#databricks-agent command: helm repo add flyteorg https://flyteorg.github.io/flyte
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
          spark: agent-service
    plugins:
      agent-service:
        supportedTaskTypes:
        - spark
k
v1.9.0
f
Hi @Kevin Su, Our Flyte is using a lower version, e.g.
Copy code
flyteadmin:
  enabled: true
  # -- Replicas count for Flyteadmin deployment
  replicaCount: 2
  image:
    # -- Docker image for Flyteadmin deployment
    repository: <http://cr.flyte.org/flyteorg/flyteadmin|cr.flyte.org/flyteorg/flyteadmin> # FLYTEADMIN_IMAGE
    tag: v1.1.80 # FLYTEADMIN_TAG
And it’s using agent-service for bigquery_query_job_task, like this:
Copy code
enabled_plugins:
    tasks:
      task-plugins:
        enabled-plugins:
          - container
          - sidecar
          - k8s-array
          - spark
          - agent-service
        default-for-task-types:
          container: container
          sidecar: sidecar
          container_array: k8s-array
          spark: spark
          bigquery_query_job_task: agent-service
Do I really need flyte v1.9.0 for agent-service to work? That’s what I was asking. Sorry if I misled you.
l
i believe it was introduced as experimental in 1.6, officially supported in 1.7 got enhanced along the way