Difference between revisions of "Helm install argocd"

From wikieduonline
Jump to navigation Jump to search
Line 4: Line 4:
 
  [[helm install my-argo argo/argo-cd]]
 
  [[helm install my-argo argo/argo-cd]]
  
<pre>
 
NAME: my-argo
 
LAST DEPLOYED: Tue Jan 16 16:53:48 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/my-argo-argocd-server -n default 8080:443
+
NAME: my-argo
 
+
LAST DEPLOYED: Tue Jan 16 16:53:48 2024
    and then open the browser on http://localhost:8080 and accept the certificate
+
NAMESPACE: default
 
+
STATUS: deployed
2. enable ingress in the values file `server.ingress.enabled` and either
+
REVISION: 1
      - Add the annotation for ssl passthrough: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#option-1-ssl-passthrough
+
TEST SUITE: None
      - 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
+
NOTES:
 
+
In order to access the server UI you have the following options:
 
+
After reaching the UI the first time you can login with username: admin and the random password generated during the installation. You can find the password by running:
+
1. kubectl port-forward service/my-argo-argocd-server -n default 8080:443
 
+
kubectl -n default get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
+
    and then open the browser on http://localhost:8080 and accept the certificate
 
+
(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)
+
2. enable ingress in the values file `server.ingress.enabled` and either
</pre>
+
      - 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 random 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)
  
 
== See also ==
 
== See also ==

Revision as of 15:57, 16 January 2024

helm repo add argo https://argoproj.github.io/argo-helm
helm install my-argo argo/argo-cd


NAME: my-argo
LAST DEPLOYED: Tue Jan 16 16:53:48 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/my-argo-argocd-server -n default 8080:443

    and then open the browser on http://localhost:8080 and accept the certificate

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 random 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)

See also

Advertising: