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

Add a trainingoperator component to the DSC template list #1519

Merged
merged 2 commits into from
Jun 13, 2024
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
9 changes: 6 additions & 3 deletions ods_ci/tasks/Resources/Files/dsc_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,18 @@ spec:
devFlags: <kserve_devflags>
defaultDeploymentMode: Serverless
managementState: <kserve_value>
kueue:
devFlags: <kueue_devflags>
managementState: <kueue_value>
modelmeshserving:
devFlags: <modelmeshserving_devflags>
managementState: <modelmeshserving_value>
ray:
devFlags: <ray_devflags>
managementState: <ray_value>
kueue:
devFlags: <kueue_devflags>
managementState: <kueue_value>
trainingoperator:
devFlags: <trainingoperator_devflags>
managementState: <trainingoperator_value>
trustyai:
devFlags: <trustyai_devflags>
managementState: <trustyai_value>
Expand Down
11 changes: 10 additions & 1 deletion ods_ci/tasks/Resources/RHODS_OLM/install/oc_install.robot
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,16 @@
*** Variables ***
${DSC_NAME} = default-dsc
${DSCI_NAME} = default-dsci
@{COMPONENT_LIST} = dashboard datasciencepipelines kserve modelmeshserving workbenches codeflare ray trustyai kueue # robocop: disable
@{COMPONENT_LIST} = codeflare

Check warning

Code scanning / Robocop

The assignment sign is not consistent inside the variables section. Expected '{{ expected_sign }}' but got '{{ actual_sign }}' instead Warning

The assignment sign is not consistent inside the variables section. Expected '=' but got ' =' instead
... dashboard
... datasciencepipelines
... kserve
... kueue
... modelmeshserving
... ray
... trainingoperator
... trustyai
... workbenches
${SERVERLESS_OP_NAME}= serverless-operator
${SERVERLESS_SUB_NAME}= serverless-operator
${SERVERLESS_NS}= openshift-serverless
Expand Down
Loading