From bc8533027ba3833feb7f741364153e00b23789f7 Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Sun, 22 Aug 2021 23:36:57 +0700 Subject: [PATCH] Add phony to bootstrap make targets --- bootstrap/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap/Makefile b/bootstrap/Makefile index 42387138..051ee5f7 100644 --- a/bootstrap/Makefile +++ b/bootstrap/Makefile @@ -5,9 +5,11 @@ KUBECONFIG = ../cluster/kubeconfig.yaml default: argocd root-app +.PHONY: argocd argocd: kustomize build ./system/argocd | kubectl apply -f - # TODO wait for argocd +.PHONY: root-app root-app: kustomize build ./system/root-app | kubectl apply -f -