Patrick Alves
11/26/2024, 2:26 PM{
"envFrom": [
{
"secretRef": {
"name": "download-doe-envs"
}
}
]
}
But it is not working. I mean, the k8s container created for this workflows does not reference this Secret.
If a set the envs instead of secretRef k8s object it works
{
"env": {
"EXECUTION_ENVIRONMENT": "staging",
"MY_NOT_SO_SECRET_CONFIG": "plumbus"
}
}
But i need to use the secret object (with dozens of envs).
If I set this secret in the job template it work, but if I set it on the Prefect UI it does not.
Any tips?