You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prefect-server Helm chart doesn't support this currently. What exists is metadata.annotations which is not what I have in mind. I need to pass the annotations to the Pod.
Proposed behavior
Make it possible to add spec.template.metadata.annotations, the motivations behind this is:
apiVersion: apps/v1kind: Deployment# (...)spec:
template:
metadata:
annotations: # <- this is currently not possible to addad.datadoghq.com/<CONTAINER_IDENTIFIER>.logs: '[<LOG_CONFIG>]'# (...)
The text was updated successfully, but these errors were encountered:
Current behavior
Prefect-server Helm chart doesn't support this currently. What exists is
metadata.annotations
which is not what I have in mind. I need to pass theannotations
to thePod
.Proposed behavior
Make it possible to add
spec.template.metadata.annotations
, the motivations behind this is:Example
For example adding Datadog log configuration using autodiscovery (snippet from here)
requires following
Deployment
configuration:The text was updated successfully, but these errors were encountered: