Generating Credentials for a Container Registry
Last updated
When you create a registry in AceCloud, you need credentials to log in and push/pull images using Docker or Helm. The Generate Credentials option provides secure authentication details for accessing your registry.
Important: Credentials are shown only once at the time of generation. If you do not save them, you will not be able to retrieve them again.
Click Generate Credentials.
A modal window will display the following details:
Username (Access ID)
Password (Access Secret)

Copy and store these credentials in a secure password manager or download them.
Note: Credentials cannot be retrieved later. If lost, you must regenerate new credentials.
Docker login
docker login <registry-endpoint> -u <username> -p <password>Helm login
helm registry login <registry-endpoint> -u <username> -p <password>Once logged in, you can push and pull images or Helm charts to your registry.
Store credentials in a secure vault or password manager.
Avoid hardcoding them into scripts. Use environment variables instead.
Rotate credentials periodically to reduce risk.
Last updated