From c921a3c37da7ea4626f1176cf77502a313c88e28 Mon Sep 17 00:00:00 2001 From: Goutham Pratapa Date: Wed, 25 Jun 2025 18:43:49 +0530 Subject: [PATCH] chore: fix syntax error in_docker variable (#41041) ## Description > [!TIP] > _Add a TL;DR when the description is longer than 500 words or extremely technical (helps the content, marketing, and DevRel team)._ > > _Please also include relevant motivation and context. List any dependencies that are required for this change. Add links to Notion, Figma or any other documents that might be relevant to the PR._ Fixes #`Issue Number` _or_ Fixes `Issue URL` > [!WARNING] > _If no issue exists, please create an issue first, and check with the maintainers if the issue is valid._ ## Automation /ok-to-test tags="" ### :mag: Cypress test results > [!WARNING] > Tests have not run on the HEAD 48aa44719e39cd7999251222edd7a594ab2e612f yet >
Wed, 25 Jun 2025 13:11:28 UTC ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No ## Summary by CodeRabbit - **Bug Fixes** - Corrected formatting and quoting issues in the deployment script to ensure proper environment variable expansion and configuration output. --- scripts/deploy_preview.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy_preview.sh b/scripts/deploy_preview.sh index 20a8e69ad3..d807fca48c 100755 --- a/scripts/deploy_preview.sh +++ b/scripts/deploy_preview.sh @@ -15,7 +15,7 @@ export cluster_name=uatx-cluster echo "[default] region = $region -output = json +output = json" echo "Region: $region" echo "Cluster name: $cluster_name" @@ -105,6 +105,6 @@ helm upgrade -i "$CHARTNAME" "appsmith-ee/$HELMCHART" -n "$NAMESPACE" --create-n --set applicationConfig.APPSMITH_CARBON_API_KEY="$APPSMITH_CARBON_API_KEY" \ --set applicationConfig.APPSMITH_CARBON_API_BASE_PATH="$APPSMITH_CARBON_API_BASE_PATH" \ --set applicationConfig.APPSMITH_AI_SERVER_MANAGED_HOSTING="$APPSMITH_AI_SERVER_MANAGED_HOSTING" \ - --set applicationConfig.IN_DOCKER='$IN_DOCKER' \ + --set applicationConfig.IN_DOCKER="$IN_DOCKER" \ --set applicationConfig.APPSMITH_CUSTOMER_PORTAL_URL="https://release-customer.appsmith.com" \ -f dp-node-affinity-values.yaml