For Google Cloud Run Jobs, we can set metadata lab...
# prefect-gcp
j
For Google Cloud Run Jobs, we can set metadata labels:
Copy code
apiVersion: serving.knative.dev/v1
kind: Service
metadata:
  name: SERVICE
  labels:
    LABEL: VALUE
spec:
  template:
    metadata:
      labels:
        LABEL: VALUE
      name: REVISION
( https://cloud.google.com/run/docs/configuring/services/labels#yaml ) These are useful, for example, for filtering billing to identify costs per service in the GCP console. Is there a way to specify Cloud Run Job metadata labels from a Prefect deployment?