aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'kubernetes/Makefile')
-rw-r--r--kubernetes/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/kubernetes/Makefile b/kubernetes/Makefile
new file mode 100644
index 00000000..0ca00e2c
--- /dev/null
+++ b/kubernetes/Makefile
@@ -0,0 +1,24 @@
+# Define the output file
+OUTPUT_FILE := _manifest.yaml
+
+# Define the Kustomize build command
+KUSTOMIZE_BUILD := kustomize build .
+
+# The default target
+all: build
+
+$(OUTPUT_FILE):
+ $(KUSTOMIZE_BUILD) > $(OUTPUT_FILE)
+
+# Build the Kustomize configuration into the output file
+build: clean $(OUTPUT_FILE)
+
+# Deploy the manifest using kubectl apply
+deploy: $(OUTPUT_FILE)
+ kubectl apply -f $(OUTPUT_FILE)
+
+# Clean up the output file
+clean:
+ rm -f $(OUTPUT_FILE)
+
+.PHONY: all build deploy clean