Update Edge user credentials
This Edge user is created for each Edge site, and deleted when you delete the Edge site.
If you have an Air-gapped Edge site, the credentials of the Collibra user you used to install and deploy the ZARF package, or Air-gapped Edge installation user, are stored in your Kubernetes cluster secret. This user is only used to create, reinstall, and delete the Air-gapped Edge site.
Update Edge user credentials
Prerequisites
The Edge user account must have the Connect Edge to Collibra global permission.
Steps
- Open the Edge CLI.
- Run the following command:
- The commands below provide both password and username. If you want to only update one, you can remove the other when running the command. For example:
./edgecli config dgc --pass <Password123!> - When resetting the password, follow the steps in our Set or reset a user password article.
The only non-alphanumeric characters accepted for passwords are:
!,$,%,&,(,),*,+,,,-,.,/,:,;,<,=,>,?,@,[,],^,_,{,|,},~.
For more information about the default password requirements, go to the Password settings.
- For Edge sites installed on a bundled k3s cluster:Copy
sudo ./edgecli config dgc \
--pass <password> \
--url <dgc url> \
--user <username>Show me the command flagsFlag Description --pass <password>The new password of your Edge user. --dgc url=<DGC URL>The URL of your Collibra Platform. --user=<username>The new username of your Edge user. - For Edge sites installed on a managed Kubernetes cluster:
Copy
./edgecli config dgc -n <my-namespace> \
--pass <password> \
--url <dgc url> \
--user <username> \Show me the command flagsFlag Description --namespace=<my-namespace>Optional, if your Edge site is installed with a custom names --pass <password>The new password of your Edge user. --dgc url=<DGC URL>The URL of your Collibra Platform. --user=<username>The new username of your Edge user. Note If your Edge site is installed on a dedicated cluster via the Edge CLI method and it does not have a custom namespace, you can remove-n <my-namespace>from the command.
Update the Air-gapped Edge installation user credentials
Prerequisites
The Air-gapped Edge installation user account must have the following Edgeglobal permissions:
- Install Edge sites
- Manage Edge sites
- Manage connections and capabilities
- Upload Edge charts
- View Edge connections and capabilities
Steps
- Open the Edge CLI.
- Run the following command:
Copy
/edgecli config dgc-airgapped \
--user=<ADMIN_USER> \
--pass=<ADMIN_PASSWORD>Show me the command flagsFlag Description --user=<ADMIN_USER>The new username of your Air-gapped Edge Admin user. --pass=<ADMIN_PASSWORD>The new password of your Air-gapped Edge Admin user.