Skip to content

Commit

Permalink
add port-forward target & help
Browse files Browse the repository at this point in the history
  • Loading branch information
deer-wmde committed Aug 23, 2024
1 parent e4a8e90 commit d17082c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,12 @@ argo-sync: # @HELP Sync app-of-apps in ArgoCD (which contains all other Applicat
argo-sync: argo-sync-app-of-apps

.PHONY: argo-list
argo-list: # @HELP List current applications and their state in ArgoCD
argo-list:
./bin/argocli app list

.PHONY: argo-port-forward
argo-port-forward: # @HELP Port forwards the ArgoCD UI to localhost:8080
argo-port-forward:
kubectl -n argocd port-forward deployments/argo-cd-base-argocd-server 8080

0 comments on commit d17082c

Please sign in to comment.