Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix runs prepare commands when adding internal-inttests to portfolio #621

Merged
merged 3 commits into from
Sep 30, 2024
Merged
Changes from 2 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
37 changes: 34 additions & 3 deletions infrastructure/cicsk8s/galasa-dev/regression-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
- mountPath: /galasa
name: static-files

- name: run-prepare
- name: run-prepare-inttests
command:
- galasactl
- runs
Expand All @@ -58,8 +58,6 @@ spec:
- https://prod1-galasa-dev.cicsk8s.hursley.ibm.com/api/bootstrap
- --stream
- inttests
- --stream
- internal-inttests
- --portfolio
- /galasa/tests.yaml
- --package
Expand Down Expand Up @@ -87,6 +85,39 @@ spec:
- mountPath: /galasa
name: static-files

- name: run-prepare-internal-inttests
command:
- galasactl
- runs
- prepare
- --bootstrap
- https://prod1-galasa-dev.cicsk8s.hursley.ibm.com/api/bootstrap
- --stream
- internal-inttests
- --portfolio
- /galasa/tests.yaml
- --append
- --package
- local
- --log
- '-'
image: harbor.galasa.dev/galasadev/galasa-cli-ibm-amd64:stable
imagePullPolicy: IfNotPresent
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
env:
- name: GALASA_HOME
value: /galasa
- name: GALASA_TOKEN
valueFrom:
secretKeyRef:
name: galasa-prod1-token
key: token
volumeMounts:
- mountPath: /galasa
name: static-files

- name: run-submit
command:
- galasactl
Expand Down
Loading