From a62cb9d79b814df5643ade247f064243b38dd489 Mon Sep 17 00:00:00 2001
From: Calliope <30454698+c4lliope@users.noreply.github.com>
Date: Sat, 2 Dec 2023 00:54:06 -0500
Subject: [PATCH] Repair code example in storageClass description.

I copied this example and had a really rough go as a kubernetes beginner; I needed a custom storageClass for the RabbitMQ operator.

So my pods were broken for a long while, until I changed my storageClass to match the other `local-path` storageClass already enabled in my cluster. This `rancher.io/local-path` seems to be the key to an easy deployment of custom storageClasses.
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 20232835..47c5a521 100644
--- a/README.md
+++ b/README.md
@@ -277,7 +277,7 @@ apiVersion: storage.k8s.io/v1
 kind: StorageClass
 metadata:
   name: ssd-local-path
-provisioner: cluster.local/local-path-provisioner
+provisioner: rancher.io/local-path
 parameters:
   nodePath: /data/ssd
 volumeBindingMode: WaitForFirstConsumer
-- 
GitLab