From 2f4d98e4f2c49d101dfaab45b3ede87c6d896f82 Mon Sep 17 00:00:00 2001 From: kumailr7 Date: Thu, 19 Sep 2024 15:30:59 +0530 Subject: [PATCH] Quartz sync: Sep 19, 2024, 3:30 PM --- .../Static vs Dynamic Provisioning in Kubernetes.md | 2 +- makefile | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 makefile diff --git a/content/Kubernetes/Fundamentals/Static vs Dynamic Provisioning in Kubernetes.md b/content/Kubernetes/Fundamentals/Static vs Dynamic Provisioning in Kubernetes.md index 1685b5b..cb79f69 100644 --- a/content/Kubernetes/Fundamentals/Static vs Dynamic Provisioning in Kubernetes.md +++ b/content/Kubernetes/Fundamentals/Static vs Dynamic Provisioning in Kubernetes.md @@ -98,7 +98,7 @@ A Diagrammatic Representation of Storage Class shared between nodes ![[SDP-24-1.png]] -Another example of Persistent Volume pointing to the cluster via PVC +Another example of Persistent Volume pointing to the application inside the cluster via PVC ![[SDP-24-2.png]] diff --git a/makefile b/makefile new file mode 100644 index 0000000..4586f65 --- /dev/null +++ b/makefile @@ -0,0 +1,11 @@ +# Makefile for automating npm quartz sync + +.PHONY: sync + +# Target to run npm quartz sync +sync: + @echo "Running quartz sync..." + npm run quartz sync + +# Default target +all: sync