Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

K8s: change pvc warning to link to new feature #312

Merged
merged 2 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/operate/kubernetes/re-clusters/expand-pvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This process involves deleting and recreating the REC StatefulSet with a larger
spec:
persistentSpec:
enablePersistentVolumeResize: true
volumeSize: <new-size>
volumeSize: <new-size>Gi
```

1. Apply the changes to the REC, replacing `<your-rec.yaml>` with the name of your REC.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ requirements]({{< relref "/operate/rs/installing-upgrading/install/plan-deployme
To explicitly specify the persistent storage size, use the *volumeSize*
property as described in the example above.

{{< warning >}}
Be aware the persistent volume size cannot be changed after deployment. Trying to change this value after deployment could result in unexpected and potentially damaging behavior. Please be sure your specified *volumeSize* is correct at the time of creation.
{{< /warning >}}
Persistent volume claims can be expanded, but not reduced after creation. See [Expand PersistentVolumeClaim (PVC)]({{<relref "/operate/kubernetes/re-clusters/expand-pvc">}}) for details.

{{< note >}}
We recommend that you omit the volumeSize definition from the REC declaration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ Then, apply the file by running:
kubectl apply -f redis-enterprise-cluster.yaml

{{< warning >}}
Be aware that [persistent volume size]({{< relref "/operate/kubernetes/recommendations/persistent-volumes.md" >}}) cannot be changed after deployment. When adjusting compute resources, make sure the ratio of persistent volume size and the new memory size are in accordance to the [Hardware
requirements]({{< relref "/operate/rs/installing-upgrading/install/plan-deployment/hardware-requirements.md" >}}).
When adjusting compute resources, make sure the ratio of persistent volume size and the new memory size are in accordance to the [Hardware
requirements]({{< relref "/operate/rs/installing-upgrading/install/plan-deployment/hardware-requirements.md" >}}).

Persistent volume claims can be expanded, but not reduced after creation. See [Expand PersistentVolumeClaim (PVC)]({{relref "/operate/kubernetes/re-clusters/expand-pvc"}}) for details.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Persistent volume claims can be expanded, but not reduced after creation. See [Expand PersistentVolumeClaim (PVC)]({{relref "/operate/kubernetes/re-clusters/expand-pvc"}}) for details.
Persistent volume claims can be expanded, but not reduced after creation. See [Expand PersistentVolumeClaim (PVC)]({{< relref "/operate/kubernetes/re-clusters/expand-pvc" >}}) for details.

{{< /warning >}}
Loading