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

Allow customizing the dependency processing method (RHCLOUD-36614) #58

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ spec:
value: # Ibutsu source for the current run. Default is "".
- name: DEPLOY_TIMEOUT
value: # Deploy timeout. Default is "900"
- name: DEPLOY_OPTIONAL_DEPS_METHOD
value: # Dependecy processing method (https://github.com/redhatinsights/bonfire?tab=readme-ov-file#dependency-processing). Default is "hybrid"
- name: IQE_IMAGE_TAG
value: # The IQE image used to run tests. Default is "".
```
Expand Down
6 changes: 6 additions & 0 deletions pipelines/basic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ spec:
type: string
description: "Deploy timeout"
default: "900"
- name: DEPLOY_OPTIONAL_DEPS_METHOD
type: string
description: "Method to deploy optional dependencies - see bonfire docs https://github.com/redhatinsights/bonfire?tab=readme-ov-file#dependency-processing"
default: "hybrid"
- name: IQE_IMAGE_TAG
type: string
description: "Tag of the iqe image to run tests from"
Expand Down Expand Up @@ -202,6 +206,8 @@ spec:
value: "$(params.DEPLOY_FRONTENDS)"
- name: DEPLOY_TIMEOUT
value: "$(params.DEPLOY_TIMEOUT)"
- name: OPTIONAL_DEPS_METHOD
value: "$(params.DEPLOY_OPTIONAL_DEPS_METHOD)"
runAfter:
- reserve-namespace
taskRef:
Expand Down
4 changes: 4 additions & 0 deletions tasks/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ spec:
type: string
description: "Deploy timeout"
default: "900"
- name: OPTIONAL_DEPS_METHOD
type: string
description: "Method to install optional dependencies - see bonfire docs"
default: "hybrid"
steps:
- name: deploy-application
image: "$(params.BONFIRE_IMAGE)"
Expand Down