From 2e5310cf5512d83b292cedff28bf7c436ec92534 Mon Sep 17 00:00:00 2001 From: spdfnet <32593931+spdfnet@users.noreply.github.com> Date: Mon, 18 Mar 2024 13:41:18 +0000 Subject: [PATCH] fix(readme): change example text from CPU to memory Signed-off-by: spdfnet <32593931+spdfnet@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 779474b..0ad74ba 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ kubectl patch dragonfly dragonfly-sample --type merge -p '{"spec":{"replicas":5} ### Vertically scaling the instance -To vertically scale the instance, you can edit the `spec.resources` field in the Dragonfly instance. For example, to increase the CPU limit to 2 cores, you can run +To vertically scale the instance, you can edit the `spec.resources` field in the Dragonfly instance. For example, to increase the memory limit to 2GiB, you can run ```sh kubectl patch dragonfly dragonfly-sample --type merge -p '{"spec":{"resources":{"requests":{"memory":"1Gi"},"limits":{"memory":"2Gi"}}}}'