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

Frank Shen

11/08/2023, 9:15 PM
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

Kevin Su

11/08/2023, 9:50 PM
v1.9.0
f

Frank Shen

11/08/2023, 11:22 PM
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

Lee Ning Jie Leon

11/09/2023, 2:21 AM
i believe it was introduced as experimental in 1.6, officially supported in 1.7 got enhanced along the way