Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 1.02 KB

README.md

File metadata and controls

37 lines (22 loc) · 1.02 KB

Welcome to Argo CD

Install Argo CD and the CLI

  • Run ./install_argocd.sh

Access the Web UI

Initial password

  • Run argocd admin initial-password -n argocd to get the initial password
  • Login with admin and the above password

Deloy your first application Via UI

Create An Application From A Git Repository

Check service

kubectl get services

Port forwarding to check the app

  • Syntax: (kubectl port-forward service/ :)
  • Run cmd: kubectl port-forward service/guestbook-ui 8082:80
  • NOTE: You can replace 8082 by your own port depends on your enviroment

Verify the result

  • Visit http://localhost:8082
  • Or via cmd: curl localhost:8082
  • Once the app is deployed successfully and service up and running with port-forwarding, we should see something like guestbook-ui-demo

Working with the ArgoCD CLI