-
Notifications
You must be signed in to change notification settings - Fork 81
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 installation of OpenShift Pipelines #944
Fix installation of OpenShift Pipelines #944
Conversation
It was failing for 4.14.0-rc1 Signed-off-by: Jorge Garcia Oncins <[email protected]>
Kudos, SonarCloud Quality Gate passed!
|
@@ -29,9 +29,9 @@ | |||
${oc_version}= Get OpenShift Version | |||
${is_self_managed}= Is RHODS Self-Managed | |||
${platform}= Fetch Cluster Platform Type | |||
IF ${oc_version} == "4.10" | |||
IF "${oc_version}" == "4.10" |
Check notice
Code scanning / Robocop
Variable '{{ name }}' in '{{ block_name }}' condition has unnecessary string conversion
${openshift_pipelines_version}= Set Variable pipelines-1.8" | ||
ELSE IF ${oc_version} == "4.11" | ||
ELSE IF "${oc_version}" == "4.11" |
Check notice
Code scanning / Robocop
Variable '{{ name }}' in '{{ block_name }}' condition has unnecessary string conversion
Robot Results
|
It was failing for 4.14.0-rc1 Signed-off-by: Jorge Garcia Oncins <[email protected]>
It was failing for 4.14.0-rc1 Signed-off-by: Jorge Garcia Oncins <[email protected]>
It was failing for 4.14.0-rc1