-
Notifications
You must be signed in to change notification settings - Fork 46
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
WIP: maestro azure postgres entra auth #900
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Gerd Oberlechner <[email protected]>
Signed-off-by: Gerd Oberlechner <[email protected]>
238652c
to
e454cd7
Compare
'GRANT ALL ON SCHEMA public TO "${newUserName}";' | ||
'GRANT USAGE ON SCHEMA public TO "${newUserName}";' | ||
'GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO "${newUserName}";' | ||
] |
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.
copy & paste error?
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.
no that was me trying to figure out what permissions are required for PG 15+ auth to work. i can most likely clean up the stuff before \c DB
but i need to test if that breaks something for CS which is still on PG 12 right now
@@ -21,5 +22,7 @@ deploy: | |||
--set image.base=${IMAGE_BASE} \ | |||
--set image.tag=${IMAGE_TAG} \ | |||
--set database.containerizedDb=${USE_CONTAINERIZED_DB} \ | |||
--set database.ssl='${USE_DATABASE_SSL}' | |||
--set database.ssl='${USE_DATABASE_SSL}' \ | |||
$(if $(filter false,$(USE_CONTAINERIZED_DB)),--set database.host=$${DATABASE_HOST}) \ |
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.
Is this some fallback for other environments?
What this PR does
leverage entra auth for postgres access
befor merging:
Jira: https://issues.redhat.com/browse/ARO-8831
Link to demo recording:
Special notes for your reviewer