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] Not being able to drop the database due to permission issue #161

Open
wadhah101 opened this issue Aug 29, 2024 · 2 comments · May be fixed by #162 or #169
Open

[bug] Not being able to drop the database due to permission issue #161

wadhah101 opened this issue Aug 29, 2024 · 2 comments · May be fixed by #162 or #169

Comments

@wadhah101
Copy link

In the latest version + azure postgres 16 + admin being the privileged azure db user.
When we try to drop the database when the CRD is deleted you get

permission denied to grant role "admin"

after some investigation this happens because we try to

GRANT admin to admin;

Only roles with the ADMIN option on role "admin" may grant this role.

@wadhah101 wadhah101 linked a pull request Aug 29, 2024 that will close this issue
@flo-02-mu
Copy link

I am running into the exact same issue. Your fix works for me.
I wonder what the purpose of these lines actually is:

err = azpg.pg.GrantRole(newOwner, azpg.user)
if err != nil && err.(*pq.Error).Code != "0LP01" {
	if err.(*pq.Error).Code == "42704" {
		// The group role does not exist, no point of granting roles
		logger.Info(fmt.Sprintf("not granting %s to %s as %s does not exist", role, newOwner, newOwner))
		return nil
	}
	return err
}

In all my tests, the value of newOwner and azpg.user were identical, so there was no really a point in doing this role assignment (which fails on pg 16).

@pcallewaert
Copy link
Contributor

I think @flo-02-mu is correct, and the proper fix is to just remove that block of code. I'll look into it to clean up the azure specific code

@pcallewaert pcallewaert linked a pull request Apr 3, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants