Scott Walsh
12/01/2022, 11:09 PMprefect kubernetes manifest agent
command seems to only take in one queue. I'd like the agent to read from multiple queues, is there syntax I can change or is this a bug?
using prefect==2.6.7
(scott/CD-562-prefect-poc) prefect kubernetes manifest agent -q test1 -q test2
apiVersion: apps/v1
kind: Deployment
metadata:
name: prefect-agent
namespace: default
labels:
app: prefect-agent
spec:
selector:
matchLabels:
app: prefect-agent
replicas: 1
template:
metadata:
labels:
app: prefect-agent
spec:
containers:
- name: agent
image: prefecthq/prefect:2.6.7-python3.9
command: ["prefect", "agent", "start", "-q", "test2"]
imagePullPolicy: "IfNotPresent"
env:
- name: PREFECT_API_URL
mason
12/09/2022, 6:13 PMMason Menges
12/09/2022, 6:14 PM["prefect", "agent", "start", "-q", "test2", "test3"]
Scott Walsh
12/12/2022, 4:11 PMMason Menges
12/12/2022, 8:59 PM