-
Notifications
You must be signed in to change notification settings - Fork 36
Add support for OCP 4.18 and make it the default #1026
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
Conversation
|
/run pipeline |
|
/run pipeline |
|
/run pipeline |
|
SKIP UPGRADE TEST explanation: As expected, the Currently only the ROKS upgrade tests are failing. |
|
The ROKS tests are reporting an issue with cluster addons, which I think is part of the fix in this PR to conform the addons input map to the new version of the base-ocp-vpc module input map. We need further changes here, I'm investigating. |
variables.tf
Outdated
| validation { | ||
| error_message = "RHEL 8 (REDHAT_8_64) or Red Hat Enterprise Linux CoreOS (RHCOS) are the allowed OS values. RHCOS requires VPC clusters created from 4.15 onwards. Upgraded clusters from 4.14 cannot use RHCOS." | ||
| condition = length([for cluster in var.clusters : true if cluster.operating_system == null || cluster.operating_system == "REDHAT_8_64" || cluster.operating_system == "RHCOS"]) == length(var.clusters) | ||
| error_message = "RHEL 8 (REDHAT_8_64), RHEL 9 (REDHAT_9_64) or Red Hat Enterprise Linux CoreOS (RHCOS) are the allowed OS values. RHCOS requires VPC clusters created from 4.15 onwards. Upgraded clusters from 4.14 cannot use RHCOS." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be RHEL_9_64 instead of REDHAT_9_64.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
correct, it was in 3 different files, I've done global search to fix them all.
variables.tf
Outdated
| error_message = "RHEL 8 (REDHAT_8_64) or Red Hat Enterprise Linux CoreOS (RHCOS) are the allowed OS values. RHCOS requires VPC clusters created from 4.15 onwards. Upgraded clusters from 4.14 cannot use RHCOS." | ||
| condition = length([for cluster in var.clusters : true if cluster.operating_system == null || cluster.operating_system == "REDHAT_8_64" || cluster.operating_system == "RHCOS"]) == length(var.clusters) | ||
| error_message = "RHEL 8 (REDHAT_8_64), RHEL 9 (REDHAT_9_64) or Red Hat Enterprise Linux CoreOS (RHCOS) are the allowed OS values. RHCOS requires VPC clusters created from 4.15 onwards. Upgraded clusters from 4.14 cannot use RHCOS." | ||
| condition = length([for cluster in var.clusters : true if cluster.operating_system == null || cluster.operating_system == "REDHAT_8_64" || cluster.operating_system == "REDHAT_9_64" || cluster.operating_system == "RHCOS"]) == length(var.clusters) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be RHEL_9_64 instead of REDHAT_9_64.
|
/run pipeline |
new ocp default + old default os type will never pass for main branch, noted in pr and skipping upgrade. SKIP UPGRADE TEST
|
/run pipeline |
|
Latest test failure was probably a cloud platform issue, so I think we are getting close on this one. |
|
/run pipeline |
|
🎉 This PR is included in version 8.5.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Description
Release required?
x.x.X)x.X.x)X.x.x)Release notes content
Run the pipeline
If the CI pipeline doesn't run when you create the PR, the PR requires a user with GitHub collaborators access to run the pipeline.
Run the CI pipeline when the PR is ready for review and you expect tests to pass. Add a comment to the PR with the following text:
Checklist for reviewers
For mergers