File tree Expand file tree Collapse file tree 1 file changed +18
-9
lines changed Expand file tree Collapse file tree 1 file changed +18
-9
lines changed Original file line number Diff line number Diff line change 28
28
description : ' Domain name of deployment, before `.demo.community.intersystems.com`'
29
29
required : true
30
30
type : string
31
+ memory :
32
+ description : ' Memory for the instance'
33
+ type : string
34
+ default : 512Mi
35
+ port :
36
+ description : ' WebPort for the running instance'
37
+ type : number
38
+ default : 52773
31
39
32
40
env :
33
41
# Change this section according to your needs
@@ -87,15 +95,16 @@ jobs:
87
95
gcloud config set project ${PROJECT_ID}
88
96
89
97
echo "[INFO] Deploy service..."
90
- gcloud run deploy ${SERVICE} \
91
- --platform gke \
92
- --cluster ${CLUSTER_NAME} \
93
- --cluster-location ${REGION} \
94
- --namespace ${NAMESPACE} \
95
- --port 52773 \
96
- --min-instances 1 \
97
- --timeout 300 \
98
- --verbosity debug \
98
+ gcloud run deploy ${SERVICE} \
99
+ --platform gke \
100
+ --cluster ${CLUSTER_NAME} \
101
+ --cluster-location ${REGION} \
102
+ --namespace ${NAMESPACE} \
103
+ --port ${{ inputs.port }} \
104
+ --min-instances 1 \
105
+ --memory ${{ inputs.memory }} \
106
+ --timeout 300 \
107
+ --verbosity debug \
99
108
--image ${GCR_LOCATION}/${PROJECT_ID}/${IMAGE_NAME}:${GITHUB_SHA}
100
109
101
110
echo "[INFO] Create domain mappings..."
You can’t perform that action at this time.
0 commit comments