ArgoCD
ArgoCD setting
argocd admin password 생성(선택)
argocd account bcrypt --password admin
$2a$10$AiUkFXDaCy8efAHMRV2Nie1LovFeHJbwBzbgUqellxz5U0qRiU7zu% ❯ ./1.argo_install.sh
"argo" has been added to your repositories
Error from server (AlreadyExists): namespaces "default" already exists
Release "argocd" does not exist. Installing it now.
NAME: argocd LAST DEPLOYED: Mon Aug 12 06:41:00 2024
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
In order to access the server UI you have the following options:
1. kubectl port-forward service/argocd-server -n default 8080:443
and then open the browser on http://localhost:8080 and accept the certificat e
2. enable ingress in the values file `server.ingress.enabled` and either
- Add the annotation for ssl passthrough: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#option-1-ssl-passthrough
- Set the `configs.params."server.insecure"` in the values file and terminate SSL at your ingress: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#option-2-multiple-ingress-objects-and-hosts
After reaching the UI the first time you can login with username: admin and the andom password generated during the installation. You can find the password by
running:
kubectl -n default get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
(You should delete the initial secret afterwards as suggested by the Getting Started Guide: https://argo-cd.readthedocs.io/en/stable/getting_started/#4-login-using-the-cli)
설치 확인
argo rollout 설치
Last updated