From f9e003d220444845ede73ff78de6f0be34b86f9b Mon Sep 17 00:00:00 2001 From: fengmk2 Date: Thu, 8 May 2025 08:08:13 +0000 Subject: [PATCH] chore(server): typo fix on cpu.doc (#12189) ## Summary by CodeRabbit - **Bug Fixes** - Corrected CPU resource allocation for the documentation service to ensure accurate deployment configuration. --- .github/actions/deploy/deploy.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/deploy/deploy.mjs b/.github/actions/deploy/deploy.mjs index e0633fc27..e4af66274 100644 --- a/.github/actions/deploy/deploy.mjs +++ b/.github/actions/deploy/deploy.mjs @@ -104,7 +104,7 @@ const createHelmCommand = ({ isDryRun }) => { `--set web.resources.requests.cpu="${cpu.web}"`, `--set graphql.resources.requests.cpu="${cpu.graphql}"`, `--set sync.resources.requests.cpu="${cpu.sync}"`, - `--set doc.resources.requests.cpu="${cpu.store}"`, + `--set doc.resources.requests.cpu="${cpu.doc}"`, ] : [];