Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions deployments/charts/atp3-bruno-runner/templates/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ spec:
value: "{{ .Values.DEBUG_MODE }}"
- name: TEST_PARAMS
value: {{ toJson .Values.TEST_PARAMS | quote }}
- name: EXTRA_VARS
value: "{{ .Values.EXTRA_VARS }}"
- name: ATP_ENVGENE_CONFIGURATION
valueFrom:
secretKeyRef:
Expand Down
1 change: 1 addition & 0 deletions deployments/charts/atp3-bruno-runner/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ MONITORING_ENABLED: true
# Security Context properties
# enabled is a flag to enable Security Context
SECURITY_CONTEXT_ENABLED: false
EXTRA_VARS: ""
# runAsUser is the user ID used to run the container
podSecurityContext:
runAsUser: 1000
Expand Down
3 changes: 3 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ source /scripts/native-report.sh
source /scripts/envgene.sh
# shellcheck disable=SC1091
source /scripts/render-environment-configuration.sh
# shellcheck disable=SC1091
source /scripts/parse-extra-vars.sh

# Execute main workflow
echo "🚀 Starting test execution workflow..."
Expand All @@ -44,6 +46,7 @@ echo "🚀 Starting test execution workflow..."
trap 'finalize_once' EXIT

init_environment || fail "Environment initialization failed"
parse_extra_vars || fail "EXTRA_VARS parsing failed"
clone_repository || fail "Repository clone failed"
render_environment_configuration || fail "Render Environment Configuration Failed"
load_envgene || fail "Load Envgen Failed"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bruno-runner",
"version": "0.1.0",
"version": "0.1.1",
"description": "ATP3 Runner for Bruno collections with Allure reporting",
"dependencies": {
"@usebruno/cli": "3.2.1",
Expand Down
2 changes: 1 addition & 1 deletion scripts
Loading