Skip to content

Commit 550963f

Browse files
ci: improve the summary so logs are easy to find (#5041)
Co-authored-by: distro-ci[bot] <122795778+distro-ci[bot]@users.noreply.github.com>
1 parent cadc42f commit 550963f

File tree

7 files changed

+27
-6
lines changed

7 files changed

+27
-6
lines changed

.github/workflows/test-integration-template.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff 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

charts/camunda-platform-8.6/test/e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: {

charts/camunda-platform-8.7/test/e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: {

charts/camunda-platform-8.8/test/e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: {

charts/camunda-platform-8.8/values.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2281,7 +2281,7 @@
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",
@@ -2768,7 +2768,7 @@
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",

charts/camunda-platform-8.9/test/e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: {

charts/camunda-platform-8.9/values.schema.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5226,6 +5226,12 @@
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
}

0 commit comments

Comments
 (0)