diff --git a/docs/operator/k8s_guide.md b/docs/operator/k8s_guide.md index 863b4cbe67..41d579ca6b 100644 --- a/docs/operator/k8s_guide.md +++ b/docs/operator/k8s_guide.md @@ -84,7 +84,7 @@ Details about which port to connect to, etc can be found on the DBOD dashboard. While inside the db instance, we can create the `rucio` user and db, and we can assign admin privileges to it: ```sql CREATE ROLE rucio WITH LOGIN PASSWORD 'xxx'; -ALTER GROUP rucio ADD USER admin; +ALTER GROUP admin ADD USER rucio; CREATE DATABASE rucio; ```