We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e23e649 commit 1e382edCopy full SHA for 1e382ed
1 file changed
internal/installer/argocd.go
@@ -64,6 +64,13 @@ func (a *ArgoCD) applyPostInstallResources() error {
64
return nil
65
}
66
67
+func showPostInstallHints() {
68
+ log.Println(`To get ArgoCD admin password, run`)
69
+ log.Println(` kubectl get secrets/argocd-initial-admin-secret -nargocd -ojson | jq -r ".data.password" | base64 -d`)
70
+ log.Println(`To port-forward ArgoCD UI to localhost:8080, run`)
71
+ log.Println(` kubectl port-forward svc/argocd-server 8080:80 -nargocd`)
72
+}
73
+
74
// Install the ArgoCD chart
75
func (a *ArgoCD) Install() error {
76
if a.Version == "" {
@@ -199,5 +206,7 @@ func (a *ArgoCD) Install() error {
199
206
return fmt.Errorf("failed apply post chart install resources: %v", err)
200
207
201
208
209
+ showPostInstallHints()
210
202
211
203
212
0 commit comments