From cfc34b1737d78d646c3383ffe3af0271cca1bbb1 Mon Sep 17 00:00:00 2001 From: kaitlynmichael Date: Wed, 15 May 2024 09:06:55 -0500 Subject: [PATCH 1/2] troubleshooting cmds, weight change --- .../operate/kubernetes/re-clusters/expand-pvc.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/content/operate/kubernetes/re-clusters/expand-pvc.md b/content/operate/kubernetes/re-clusters/expand-pvc.md index 11071d970..e74761fff 100644 --- a/content/operate/kubernetes/re-clusters/expand-pvc.md +++ b/content/operate/kubernetes/re-clusters/expand-pvc.md @@ -7,7 +7,7 @@ categories: - kubernetes description: Expand your persistent volume claim by editing the REC. linkTitle: Expand PVC -weight: 15 +weight: 82 --- This article outlines steps to increase the size of the persistent volume claim for your Redis Enterprise cluster (REC). @@ -87,4 +87,13 @@ status: If an error occurs during this process: - Examine the status and events of the REC and PVC objects. -- Examine the logs of the operator pods. \ No newline at end of file + + ```sh + kubectl describe pvc + ``` + + ```sh + kubectl get events + ``` + +- Examine the [logs]({{}}) of the operator pods. From c4d0d7dd0f09488d44ac56bcbee1f01e1e92825b Mon Sep 17 00:00:00 2001 From: kaitlynmichael Date: Wed, 15 May 2024 16:46:36 -0500 Subject: [PATCH 2/2] add logs kubectl cmd --- content/operate/kubernetes/re-clusters/expand-pvc.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/operate/kubernetes/re-clusters/expand-pvc.md b/content/operate/kubernetes/re-clusters/expand-pvc.md index e74761fff..39a2c8983 100644 --- a/content/operate/kubernetes/re-clusters/expand-pvc.md +++ b/content/operate/kubernetes/re-clusters/expand-pvc.md @@ -96,4 +96,8 @@ If an error occurs during this process: kubectl get events ``` -- Examine the [logs]({{}}) of the operator pods. +- Examine the logs of the operator pods. + + ```sh + kubectl logs + ```