-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
executable file
·166 lines (146 loc) · 5.57 KB
/
Copy pathdeploy.sh
File metadata and controls
executable file
·166 lines (146 loc) · 5.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#!/bin/bash
# Variables
PREFIX='local'
SUFFIX='test'
LOCATION='westeurope'
FUNCTION_APP_NAME="${PREFIX}-func-${SUFFIX}"
STORAGE_ACCOUNT_NAME="${PREFIX}storage${SUFFIX}"
RESOURCE_GROUP_NAME="${PREFIX}-rg"
RUNTIME="DOTNET-ISOLATED"
RUNTIME_VERSION="10"
PLAYER_NAMES="Alice,Anastasia,Paolo,Leo,Mia"
INPUT_STORAGE_CONTAINER_NAME="input"
OUTPUT_STORAGE_CONTAINER_NAME="output"
INPUT_QUEUE_NAME="input"
OUTPUT_QUEUE_NAME="output"
TRIGGER_QUEUE_NAME="trigger"
INPUT_TABLE_NAME="scoreboards"
OUTPUT_TABLE_NAME="winners"
ZIPFILE="function_app.zip"
CURRENT_DIR="$(cd "$(dirname "$0")" && pwd)"
SUBSCRIPTION_NAME=$(az account show --query name --output tsv)
# Change the current directory to the script's directory
cd "$CURRENT_DIR" || exit
# Create a resource group
echo "Checking if resource group [$RESOURCE_GROUP_NAME] exists in the subscription [$SUBSCRIPTION_NAME]..."
az group show --name $RESOURCE_GROUP_NAME &>/dev/null
if [[ $? != 0 ]]; then
echo "No resource group [$RESOURCE_GROUP_NAME] exists in the subscription [$SUBSCRIPTION_NAME]"
echo "Creating resource group [$RESOURCE_GROUP_NAME] in the subscription [$SUBSCRIPTION_NAME]..."
# Create the resource group
az group create \
--name $RESOURCE_GROUP_NAME \
--location $LOCATION \
--only-show-errors 1>/dev/null
if [[ $? == 0 ]]; then
echo "Resource group [$RESOURCE_GROUP_NAME] successfully created in the subscription [$SUBSCRIPTION_NAME]"
else
echo "Failed to create resource group [$RESOURCE_GROUP_NAME] in the subscription [$SUBSCRIPTION_NAME]"
exit 1
fi
else
echo "Resource group [$RESOURCE_GROUP_NAME] already exists in the subscription [$SUBSCRIPTION_NAME]"
fi
# Create a storage account
echo "Checking if storage account [$STORAGE_ACCOUNT_NAME] exists in the resource group [$RESOURCE_GROUP_NAME]..."
az storage account show \
--name $STORAGE_ACCOUNT_NAME \
--resource-group $RESOURCE_GROUP_NAME &>/dev/null
if [[ $? != 0 ]]; then
echo "No storage account [$STORAGE_ACCOUNT_NAME] exists in the [$RESOURCE_GROUP_NAME] resource group."
echo "Creating storage account [$STORAGE_ACCOUNT_NAME] in the [$RESOURCE_GROUP_NAME] resource group..."
az storage account create \
--name $STORAGE_ACCOUNT_NAME \
--location $LOCATION \
--resource-group $RESOURCE_GROUP_NAME \
--sku Standard_LRS 1>/dev/null
if [ $? -eq 0 ]; then
echo "Storage account [$STORAGE_ACCOUNT_NAME] created successfully in the [$RESOURCE_GROUP_NAME] resource group."
else
echo "Failed to create storage account [$STORAGE_ACCOUNT_NAME] in the [$RESOURCE_GROUP_NAME] resource group."
exit 1
fi
else
echo "Storage account [$STORAGE_ACCOUNT_NAME] already exists in the [$RESOURCE_GROUP_NAME] resource group."
fi
# Get the storage account key
echo "Getting storage account key for [$STORAGE_ACCOUNT_NAME]..."
STORAGE_ACCOUNT_KEY=$(az storage account keys list \
--account-name $STORAGE_ACCOUNT_NAME \
--resource-group $RESOURCE_GROUP_NAME \
--query "[0].value" \
--output tsv)
if [ -n "$STORAGE_ACCOUNT_KEY" ]; then
echo "Storage account key retrieved successfully: [$STORAGE_ACCOUNT_KEY]"
else
echo "Failed to retrieve storage account key."
exit 1
fi
# Create the function app
echo "Creating function app [$FUNCTION_APP_NAME]..."
az functionapp create \
--resource-group $RESOURCE_GROUP_NAME \
--consumption-plan-location $LOCATION \
--runtime $RUNTIME \
--runtime-version $RUNTIME_VERSION \
--functions-version 4 \
--name $FUNCTION_APP_NAME \
--os-type linux \
--storage-account $STORAGE_ACCOUNT_NAME 1>/dev/null
if [ $? -eq 0 ]; then
echo "Function app [$FUNCTION_APP_NAME] created successfully."
else
echo "Failed to create function app [$FUNCTION_APP_NAME]."
exit 1
fi
# Construct the storage connection string for LocalStack
STORAGE_CONNECTION_STRING="DefaultEndpointsProtocol=https;AccountName=$STORAGE_ACCOUNT_NAME;AccountKey=$STORAGE_ACCOUNT_KEY;EndpointSuffix=core.windows.net"
# Set function app settings
echo "Setting function app settings for [$FUNCTION_APP_NAME]..."
az functionapp config appsettings set \
--name $FUNCTION_APP_NAME \
--resource-group $RESOURCE_GROUP_NAME \
--settings \
AzureWebJobsStorage="$STORAGE_CONNECTION_STRING" \
STORAGE_ACCOUNT_CONNECTION_STRING="$STORAGE_CONNECTION_STRING" \
WEBSITE_CONTENTAZUREFILECONNECTIONSTRING="$STORAGE_CONNECTION_STRING" \
INPUT_STORAGE_CONTAINER_NAME="$INPUT_STORAGE_CONTAINER_NAME" \
OUTPUT_STORAGE_CONTAINER_NAME="$OUTPUT_STORAGE_CONTAINER_NAME" \
INPUT_QUEUE_NAME="$INPUT_QUEUE_NAME" \
OUTPUT_QUEUE_NAME="$OUTPUT_QUEUE_NAME" \
TRIGGER_QUEUE_NAME="$TRIGGER_QUEUE_NAME" \
INPUT_TABLE_NAME="$INPUT_TABLE_NAME" \
OUTPUT_TABLE_NAME="$OUTPUT_TABLE_NAME" \
PLAYER_NAMES="$PLAYER_NAMES" \
TIMER_SCHEDULE="0 */1 * * * *" \
FUNCTIONS_WORKER_RUNTIME="dotnet-isolated" 1>/dev/null
if [ $? -eq 0 ]; then
echo "Function app settings for [$FUNCTION_APP_NAME] set successfully."
else
echo "Failed to set function app settings for [$FUNCTION_APP_NAME]."
exit 1
fi
# CD into the function app directory
cd ../src/sample || exit
# Clean and build the project in Release configuration
dotnet clean
dotnet build -c Release
# Publish the project to a publish directory
dotnet publish -c Release -o publish || exit 1
# Create deployment zip from the published output
rm -f $ZIPFILE
cd publish || exit
zip -r ../$ZIPFILE .
cd .. || exit
# Deploy the function app using the zip file
echo "Deploying function app [$FUNCTION_APP_NAME]..."
if az functionapp deploy \
--resource-group "$RESOURCE_GROUP_NAME" \
--name "$FUNCTION_APP_NAME" \
--src-path $ZIPFILE \
--type zip 1> /dev/null; then
echo "Function app [$FUNCTION_APP_NAME] deployed successfully."
else
echo "Failed to deploy function app [$FUNCTION_APP_NAME]."
exit 1
fi