Skip to main content

Setup ArgoCD

To install Data, you first have to setup ArgoCD.

Prerequisites

Make sure that you have installed ArgoCD through AHD Commons by checking that your commons-values.yaml contain the following configuration:

argo-cd:
enabled: true

If the configuration is not present, add it and run helm upgrade commons smartkit/commons --values commons-values.yaml

1. Reset ArgoCD Password

Connected via SSH to the AHD VM, run the following command to set the ArgoCD password:

kubectl patch secret argocd-secret -p '{"stringData": {"admin.password": "$2a$10$1iDpuB4soP4SpNQYNB9rLuZIytG9LTN/XqEbhfsDFv27sBeUb1w8K"}}'

2. Access the ArgoCD Web Console

From your browser, visit the URL

https://<IP_AHD_VM>/argocd/login
warning

Make sure to connect via https://

Log in with the following credentials:

  • Username: admin
  • Password: changeme

3. Change ArgoCD Password

Once logged in, go to the User Info section from the left side menu, and click on Update Password

argocd-update-pwd

After changing your password, logout and login again using your new password.