From d17082c165ddb3deda832955e7a2faccc2070631 Mon Sep 17 00:00:00 2001 From: Deniz Erdogan Date: Fri, 23 Aug 2024 17:39:37 +0200 Subject: [PATCH] add port-forward target & help --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 1970ddb16..472180345 100644 --- a/Makefile +++ b/Makefile @@ -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 +