From eee6810fe93a53294407bf35b4e366c142d56198 Mon Sep 17 00:00:00 2001 From: Weilbyte Date: Thu, 15 Apr 2021 13:21:34 +0200 Subject: [PATCH] Fix instructions to comply with MD031 (blanks-around-fences) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 8b6360de..24f4a10a 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ resources: **Step 3: Create namespace resource** Create a file with your namespace resource. The name can be anything as it will get overwritten by the namespace in your kustomization file. + ```yaml # namespace.yaml apiVersion: v1 @@ -85,6 +86,7 @@ Replace occurrences of `` and `` with **Step 5: Add resources and deploy** Add the namespace resource and patch you created in earlier steps. + ```yaml namespace: nfs-provisioner resources: @@ -93,7 +95,9 @@ resources: patchesStrategicMerge: - patch_nfs_details.yaml ``` + Deploy (run inside folder with your kustomization file): + ```sh kubectl -k . ```