From f9efcd29e0f5494a46eb9cb00e1f997421491a2d Mon Sep 17 00:00:00 2001 From: Goutham Pratapa Date: Thu, 3 Aug 2023 19:56:23 +0530 Subject: [PATCH] update: dp with deployments style (#25988) --- scripts/deploy_preview.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/deploy_preview.sh b/scripts/deploy_preview.sh index 716d8eaa65..233764916b 100755 --- a/scripts/deploy_preview.sh +++ b/scripts/deploy_preview.sh @@ -36,11 +36,13 @@ then ACCESS_POINT_ID=$(aws efs describe-access-points --file-system-id "$DP_EFS_ID" | jq -r '.AccessPoints[] | select(.Name=="'"$PULL_REQUEST_NUMBER"'") | .AccessPointId') aws efs delete-access-point --access-point-id $ACCESS_POINT_ID fi -echo "Create Access Point and Access Point ID" +echo "Create Access Point and Access Point ID" ## Use DP-EFS and create ACCESS_POINT ACCESS_POINT=$(aws efs create-access-point --file-system-id $DP_EFS_ID --tags Key=Name,Value=ce$PULL_REQUEST_NUMBER) -ACCESS_POINT_ID=$(echo $ACCESS_POINT | jq -r '.AccessPointId') +echo $ACCESS_POINT +export ACCESS_POINT_ID=$(echo $ACCESS_POINT | jq -r '.AccessPointId'); +echo $ACCESS_POINT_ID export NAMESPACE=ce"$PULL_REQUEST_NUMBER" export CHARTNAME=ce"$PULL_REQUEST_NUMBER" @@ -49,7 +51,7 @@ export DBNAME=ce"$PULL_REQUEST_NUMBER" export DOMAINNAME=ce-"$PULL_REQUEST_NUMBER".dp.appsmith.com -export HELMCHART="appsmith" +export HELMCHART="appsmith-ee" export HELMCHART_URL="http://helm-ee.appsmith.com" export HELMCHART_VERSION="3.0.4"