-
Notifications
You must be signed in to change notification settings - Fork 43
NO-JIRA: Expand CAPI to Cluster API and MAPI to Machine API #272
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
base: main
Are you sure you want to change the base?
Conversation
Skipping CI for Draft Pull Request. |
@RadekManak: This pull request explicitly references no jira issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
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.
The expansion LGTM. There are other docs convention things that I would suggest changing, but I am guessing you'd prefer to keep commits sort of targeted to one topic.
I guess I can collect other things I notice and maybe open a PR myself later suggestions? In any case, this gives me a very good idea at what attempting something like that would look like.
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jeana-redhat, JoelSpeed The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest |
/lgtm |
/hold |
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.
A couple of places should not be changed.
The rest looks good.
/unlgtm
@@ -83,7 +83,7 @@ var _ = Describe("ClusterOperator controller", func() { | |||
Eventually(co).Should(HaveField("Status.Conditions", | |||
SatisfyAll( | |||
ContainElement(And(HaveField("Type", Equal(configv1.OperatorAvailable)), HaveField("Status", Equal(configv1.ConditionTrue)), | |||
HaveField("Message", Equal(fmt.Sprintf("Cluster CAPI Operator is available at %s", desiredOperatorReleaseVersion))))), | |||
HaveField("Message", Equal(fmt.Sprintf("Cluster Cluster API Operator is available at %s", desiredOperatorReleaseVersion))))), |
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.
This should stay as is.
@@ -277,14 +277,14 @@ func (r *CapiInstallerController) setAvailableCondition(ctx context.Context, log | |||
|
|||
conds := []configv1.ClusterOperatorStatusCondition{ | |||
operatorstatus.NewClusterOperatorStatusCondition(capiInstallerControllerAvailableCondition, configv1.ConditionTrue, operatorstatus.ReasonAsExpected, | |||
"CAPI Installer Controller works as expected"), | |||
"Cluster API Installer Controller works as expected"), |
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.
All these CAPI Installer Controller
should stay as is, as that's the actual controller name.
@@ -70,7 +70,7 @@ func (r *ClusterOperatorStatusClient) SetStatusAvailable(ctx context.Context, av | |||
} | |||
|
|||
if availableConditionMsg == "" { | |||
availableConditionMsg = fmt.Sprintf("Cluster CAPI Operator is available at %s", r.ReleaseVersion) | |||
availableConditionMsg = fmt.Sprintf("Cluster Cluster API Operator is available at %s", r.ReleaseVersion) |
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.
This should not change
96ba6d7
to
9624ac5
Compare
New changes are detected. LGTM label has been removed. |
/test unit |
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
@RadekManak: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Expand CAPI to Cluster API and MAPI to Machine api in user facing strings.
This should cover all occurrences, as I have generated this using sed a manually filtered test strings that don't have to follow this convention.