-
Notifications
You must be signed in to change notification settings - Fork 606
MULTIARCH-4559: config/v1/types_cluster_version.go: Add 'architecture' to the release structure #2024
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
MULTIARCH-4559: config/v1/types_cluster_version.go: Add 'architecture' to the release structure #2024
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -746,6 +746,16 @@ type Update struct { | |
| // Release represents an OpenShift release image and associated metadata. | ||
| // +k8s:deepcopy-gen=true | ||
| type Release struct { | ||
| // architecture is an optional field that indicates the | ||
| // value of the cluster architecture. In this context cluster | ||
| // architecture means either a single architecture or a multi | ||
| // architecture. | ||
| // Valid values are 'Multi' and empty. | ||
|
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 may very well end up extended with more detail in the near future, but starting here is acceptable. |
||
| // | ||
| // +openshift:enable:FeatureGate=ImageStreamImportMode | ||
| // +optional | ||
| Architecture ClusterVersionArchitecture `json:"architecture,omitempty"` | ||
|
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. Needs featuregate.
Member
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. Which feature gate would you like? The enhancement is pretty thin in that section.
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. the
Member
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. Feature gate added as of 7f3382e. The verify-crd-schema failures are all existing properties in the new-with-this-pull |
||
|
|
||
| // version is a semantic version identifying the update version. When this | ||
| // field is part of spec, version is optional if image is specified. | ||
| // +required | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.