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