CloudRaya Documentation

Reset Registry Password

This guide explains how to reset the authentication password for a CloudRaya Container Registry and what impact this action has on existing workflows.

Resetting the registry password is useful when credentials are compromised, rotated as part of security policy, or no longer accessible.

⚠️ Important Security Notice

Resetting a registry password immediately invalidates the previous password.

Any service, application, or pipeline using the old password will fail authentication until updated.

This action is intentional and irreversible for security reasons.

When Should You Reset the Registry Password?

Reset the registry password if:

  • Credentials are exposed or suspected to be compromised
  • A team member with access leaves the organization
  • You follow periodic credential rotation policies
  • CI/CD pipelines fail due to lost credentials
  • You want to enforce tighter access control

What Happens When You Reset the Password?

What Changes

  • A new registry password is generated
  • Old credentials stop working immediately
  • New credentials must be used for:
    • docker login
    • CI/CD pipelines
    • Kubernetes image pulls (private images)

What Does NOT Change

  • Registry URL
  • Registry username
  • Stored images and repositories
  • Storage usage
  • Existing tags and metadata

No data is deleted or modified.

How to Reset the Registry Password

  1. Open Dashboard → Storage → CloudRaya Container Registry
  2. Select the registry you want to manage
  3. Click View Detail
  4. Open the Change Password option
  5. Confirm the reset action

Make sure to store it securely.

After Reset: Required Actions

After resetting the password, you must update all integrations.

Docker Login

docker login <registry-endpoint>

Use the new password when prompted.

CI/CD Pipelines

Update registry credentials in:

  • GitHub Actions secrets
  • GitLab CI variables
  • Jenkins credentials
  • Any external automation tools

Kubernetes (Private Images)

If your workloads pull images from this registry:

  • Update the imagePullSecrets
  • Recreate secrets if necessary

📄 See: Integrate Container Registry with Kubernetes

Best Practices

  • Reset passwords periodically as part of security hygiene
  • Avoid hardcoding registry credentials in code
  • Use secret managers or encrypted CI/CD variables
  • Rotate credentials immediately after team changes
  • Validate pipelines after resetting credentials

Common Issues After Reset

IssueCauseSolution
docker pull failsOld password cachedRe-run docker login
CI pipeline failsSecrets not updatedUpdate pipeline credentials
Kubernetes pods stuckOld imagePullSecretRecreate secret

📄 Manage Registry

📄 Push & Pull Images

📄 Integrate Container Registry with Kubernetes

📄 Container Registry Best Practices

© 2026 CloudRaya Product Team. All rights reserved.

On this page