-
Notifications
You must be signed in to change notification settings - Fork 972
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
Add support for Secret Manager usage in JdbcToBigQuery #1278
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution, LGTM! Running the checks
Can you please |
38053e2
to
f199a4d
Compare
@bvolpato I pushed up Spotless changes |
@bvolpato any chance we could get another review? |
@bharadwaj-aditya was looking at other PRs and saw you were active recently any chances you could review this and trigger the tests? @bvolpato if your around as well just trying to get this merged if possibel |
@shreyakhajanchi @bharadwaj-aditya @bvolpato Just trying to get this reviewed I'm not sure what the correct way to get attention is so I've just been looking at recently reviewed PRs and pulling ppl sorry for being a bother but any guidance would be appreciated |
Will merge this later after the tests are done. |
thank you! @liferoad |
@philippebailer can you check the failed tests? |
Looking into it @liferoad, thanks for running the tests |
Can we also update the doc with one example to show how to use this? |
Sure I can update the docs, do you mind pointing me to the docs that need updating? @liferoad sorry we tried looking into the test failures last week and were pretty confused as to how they were happening and then things picked up at work and this got put on hold but I'll be circling back to this next week and hopefully will be able to resolve this. I know that other templates that use the secrets manage have a selector so I am planning to follow those examples since I the current solution seems to have issues with the get and I'm just not familiar enough with all this to understand why. |
Any update ? |
Any update? |
It looks like this PR had failing checks which blocked merging. Logs for those tests have since expired, so not sure if its a false positive or real problem. @philippebailer could you please pull in the latest changes from master onto your branch? That will cause the checks to be rerun and will make sure no weird conflicts have come in since this PR was opened EDIT: I tried this in #1937 - TBD on results |
I tried these changes out, and they don't work. If you try to stage this template, it errors with:
The underlying problem here is that we're trying to access the ValueProvider value as we construct the pipeline/template, but that value doesn't exist yet. The proper approach here would be to either:
My only hesitation with (1) is that it impacts more templates than just this, so we need to make extra sure we're not doing something weirdly incompatible with other template options. |
No description provided.