File tree Expand file tree Collapse file tree 7 files changed +27
-6
lines changed
camunda-platform-8.6/test/e2e
camunda-platform-8.7/test/e2e Expand file tree Collapse file tree 7 files changed +27
-6
lines changed Original file line number Diff line number Diff line change @@ -355,3 +355,18 @@ jobs:
355355 echo "Namespace: ${{ needs.runner.outputs.namespace }}"
356356 echo "deployment-url=${{ steps.vars.outputs.ingress-host }}" >> $GITHUB_OUTPUT
357357 echo "namespace=${{ needs.runner.outputs.namespace }}" >> $GITHUB_OUTPUT
358+
359+ - name : Add GKE Workload Link to Summary
360+ run : |
361+ NAMESPACE="${{ needs.runner.outputs.namespace }}"
362+ ENCODED_NAMESPACE=$(python3 -c "import urllib.parse; print(urllib.parse.quote('$NAMESPACE', safe=''))")
363+ GKE_WORKLOAD_URL="https://console.cloud.google.com/kubernetes/workload/overview?authuser=1&project=camunda-distribution&pageState=(%22savedViews%22:(%22n%22:%5B%22${ENCODED_NAMESPACE}%22%5D))"
364+ cat >> $GITHUB_STEP_SUMMARY << EOF
365+ ## Deployment Links
366+
367+ | Resource | Link |
368+ |----------|------|
369+ | Deployment URL | https://${{ steps.vars.outputs.ingress-host }} |
370+ | GKE Workload Overview | [View in GKE Console](${GKE_WORKLOAD_URL}) |
371+ | Namespace | \`${NAMESPACE}\` |
372+ EOF
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export default defineConfig({
1717 ] ,
1818 fullyParallel : true ,
1919 retries : 3 ,
20- timeout : 5 * 60 * 1000 , // no test should take more than 3 minutes (failing fast is important so that we can run our tests on each PR)
20+ timeout : 15 * 60 * 1000 , // no test should take more than 3 minutes (failing fast is important so that we can run our tests on each PR)
2121 workers : "100%" ,
2222 //workers: process.env.CI == "true" ? 1 : "50%",
2323 use : {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export default defineConfig({
1717 ] ,
1818 fullyParallel : true ,
1919 retries : 3 ,
20- timeout : 5 * 60 * 1000 , // no test should take more than 3 minutes (failing fast is important so that we can run our tests on each PR)
20+ timeout : 15 * 60 * 1000 , // no test should take more than 3 minutes (failing fast is important so that we can run our tests on each PR)
2121 workers : "100%" ,
2222 //workers: process.env.CI == "true" ? 1 : "50%",
2323 use : {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export default defineConfig({
1717 ] ,
1818 fullyParallel : true ,
1919 retries : 3 ,
20- timeout : 5 * 60 * 1000 , // no test should take more than 3 minutes (failing fast is important so that we can run our tests on each PR)
20+ timeout : 15 * 60 * 1000 , // no test should take more than 3 minutes (failing fast is important so that we can run our tests on each PR)
2121 workers : "100%" ,
2222 //workers: process.env.CI == "true" ? 1 : "50%",
2323 use : {
Original file line number Diff line number Diff line change 22812281 "tag" : {
22822282 "type" : " string" ,
22832283 "description" : " can be used to set the Docker image tag for the Console image (overwrites global.image.tag)" ,
2284- "default" : " 8.8.72 "
2284+ "default" : " 8.8.73 "
22852285 },
22862286 "digest" : {
22872287 "type" : " string" ,
27682768 "tag" : {
27692769 "type" : " string" ,
27702770 "description" : " can be used to set the Docker image tag for the WebModeler images (overwrites global.image.tag)" ,
2771- "default" : " 8.8.5 "
2771+ "default" : " 8.8.6 "
27722772 },
27732773 "pullSecrets" : {
27742774 "type" : " array" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export default defineConfig({
1717 ] ,
1818 fullyParallel : true ,
1919 retries : 3 ,
20- timeout : 5 * 60 * 1000 , // no test should take more than 3 minutes (failing fast is important so that we can run our tests on each PR)
20+ timeout : 15 * 60 * 1000 , // no test should take more than 3 minutes (failing fast is important so that we can run our tests on each PR)
2121 workers : "100%" ,
2222 //workers: process.env.CI == "true" ? 1 : "50%",
2323 use : {
Original file line number Diff line number Diff line change 52265226 "description" : " define mapping rules." ,
52275227 "default" : [],
52285228 "items" : {}
5229+ },
5230+ "authorizations" : {
5231+ "type" : " array" ,
5232+ "description" : " define authorizations." ,
5233+ "default" : [],
5234+ "items" : {}
52295235 }
52305236 }
52315237 }
You can’t perform that action at this time.
0 commit comments