You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
notif_reporter/grants/query:
- "GRANT SELECT ON data_team.*"
notif_reporter/allow_databases/database:
- "data_team"
seems like i cant use these two together but operator didnt tell me anything either other than that ip is restricted while i gave access to all ips for this user.
after restarting the pod manually since the operator didnt restart i found out my configuration is invalid so i commented out this part:
when you combine allow_databases and GRANT ... ON db.* it doesn't work on clickhouse side
Actually your pod should switched to CrashLoopBack in modern clickhouse-server version with error in logs something like that "you can't add any other grants for database"
if you will use *.* instead of db.* then it should works
notif_reporter/grants/query:
- "GRANT SELECT ON *.*"notif_reporter/allow_databases/database:
- "data_team"
Hey guys yesterday i had this clickhouse user config section:
The key part is these two:
seems like i cant use these two together but operator didnt tell me anything either other than that ip is restricted while i gave access to all ips for this user.
after restarting the pod manually since the operator didnt restart i found out my configuration is invalid so i commented out this part:
and used grants only and it went through.
Just wanted to let you know.
Thanks
The text was updated successfully, but these errors were encountered: