-
Notifications
You must be signed in to change notification settings - Fork 213
api: Move CVOConfig to final name and location #44
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| package apis | ||
|
|
||
| // ClusterVersionGroupName defines the API group for clusterversion. | ||
| const ClusterVersionGroupName = "clusterversion.openshift.io" | ||
| const ClusterVersionGroupName = "config.openshift.io" | ||
|
|
||
| // OperatorStatusGroupName defines the API group for operatorstatus. | ||
| const OperatorStatusGroupName = "operatorstatus.openshift.io" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,7 +36,8 @@ func init() { | |
| // Adds the list of known types to api.Scheme. | ||
| func addKnownTypes(scheme *runtime.Scheme) error { | ||
| scheme.AddKnownTypes(SchemeGroupVersion, | ||
| &CVOConfig{}, | ||
| &ClusterVersion{}, | ||
| &ClusterVersionList{}, | ||
| &CVOStatus{}, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this stands out now.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I think the spec/status split discussion can happen as a second step here. I will create a PR that has those additional commits so we can look at it. |
||
| ) | ||
|
|
||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
pre-existing, but where is the list?
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.
Added