Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] When running a task that requires Secrets locally, env_var doesn't seem to be used. #6302

Open
2 tasks done
cjidboon94 opened this issue Mar 4, 2025 · 1 comment
Open
2 tasks done
Assignees
Labels
bug Something isn't working good first issue Good for newcomers help wanted Extra attention is needed

Comments

@cjidboon94
Copy link
Contributor

Describe the bug

I am running flytekit 1.15.0

I have a task that uses secrets. An example would be:

SECRET_GROUP = "secretgroup"
SECRET_KEY = "thesecret"
@task(secret_requests=[
  Secret(group=SECRET_GROUP, env_var="MY_SECRET", key=SECRET_KEY)
])
def my_task
    context = flytekit.current_context()
    secret_val = context.secrets.get(SECRET_GROUP, SECRET_KEY)
    do_something_with_secret_val(secret_val)

When I run this remotely, this is fine. But when I run this locally (having set the correct environment variables), I get the following error:

Error encountered while executing 'my_task':
 Please make sure to add secret_requests=[Secret(group=secretgroup, key=thesecret)] in @task. Unable to find secret for key endpoint in group secretgroup in Env Var:SECRETGROUP_THESECRET and FilePath: /etc/secrets/secretgroup/thesecret

Expected behavior

I would expect that flyte would look if the env var MY_SECRET would exist instead of SECRETGROUP_THESECRET.

Additional context to reproduce

No response

Screenshots

No response

Are you sure this issue hasn't been raised already?

  • Yes

Have you read the Code of Conduct?

  • Yes
@cjidboon94 cjidboon94 added bug Something isn't working untriaged This issues has not yet been looked at by the Maintainers labels Mar 4, 2025
@eapolinario eapolinario added good first issue Good for newcomers help wanted Extra attention is needed and removed untriaged This issues has not yet been looked at by the Maintainers labels Mar 6, 2025
@0yukali0
Copy link
Contributor

hi, can assign this issue to me?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers help wanted Extra attention is needed
Projects
Status: Backlog
Development

No branches or pull requests

3 participants