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

[patch] Disable AppConnect in install pipeline #216

Merged
merged 5 commits into from
Mar 25, 2023
Merged
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
18 changes: 10 additions & 8 deletions tekton/src/pipelines/install-with-fvt.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -146,16 +146,17 @@ spec:
- fvt-operatormaturity
- cos

# App Connect temporarily disabled due CVEID: CVE-2023-28521
# 4.1 Install AppConnect
{{ lookup('template', 'taskdefs/dependencies/appconnect.yml.j2') | indent(4) }}
runAfter:
- ibm-catalogs
# {{ lookup('template', 'taskdefs/dependencies/appconnect.yml.j2') | indent(4) }}
# runAfter:
# - ibm-catalogs

# 4.2 Configure AppConnect in MAS
{{ lookup('template', 'taskdefs/core/suite-config-appconnect.yml.j2') | indent(4) }}
runAfter:
- fvt-operatormaturity
- appconnect
# {{ lookup('template', 'taskdefs/core/suite-config-appconnect.yml.j2') | indent(4) }}
# runAfter:
# - fvt-operatormaturity
# - appconnect

# 4.3 Nvidia GPU Operator
{{ lookup('template', 'taskdefs/dependencies/nvidia.yml.j2') | indent(4) }}
Expand Down Expand Up @@ -304,7 +305,8 @@ spec:
runAfter:
- app-cfg-manage # Requires Health as an add-on
- suite-config-watson-studio
- suite-config-appconnect
# App Connect temporarily disabled due CVEID: CVE-2023-28521
# - suite-config-appconnect

# 12.2 Configure HPUtilities workspace
{{ lookup('template', 'taskdefs/apps/hputilities-workspace.yml.j2') | indent(4) }}
Expand Down
20 changes: 11 additions & 9 deletions tekton/src/pipelines/install.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,18 @@ spec:
runAfter:
- suite-verify
- cos


# App Connect temporarily disabled due CVEID: CVE-2023-28521
# 4.1 Install AppConnect
{{ lookup('template', 'taskdefs/dependencies/appconnect.yml.j2') | indent(4) }}
runAfter:
- ibm-catalogs
# {{ lookup('template', 'taskdefs/dependencies/appconnect.yml.j2') | indent(4) }}
# runAfter:
# - ibm-catalogs

# 4.2 Configure AppConnect in MAS
{{ lookup('template', 'taskdefs/core/suite-config-appconnect.yml.j2') | indent(4) }}
runAfter:
- suite-verify
- appconnect
# {{ lookup('template', 'taskdefs/core/suite-config-appconnect.yml.j2') | indent(4) }}
# runAfter:
# - suite-verify
# - appconnect

# 4.3 Nvidia GPU Operator
{{ lookup('template', 'taskdefs/dependencies/nvidia.yml.j2') | indent(4) }}
Expand Down Expand Up @@ -300,7 +301,8 @@ spec:
runAfter:
- app-cfg-manage # Requires Health as an add-on
- suite-config-watson-studio
- suite-config-appconnect
# App Connect temporarily disabled due CVEID: CVE-2023-28521
# - suite-config-appconnect

# 12.2 Configure HPUtilities workspace
{{ lookup('template', 'taskdefs/apps/hputilities-workspace.yml.j2') | indent(4) }}
Expand Down