-
Notifications
You must be signed in to change notification settings - Fork 207
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
Integrate baremetal-operator with machine-api-operator #302
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: baremetalhosts.metal3.io | ||
spec: | ||
group: metal3.io | ||
names: | ||
kind: BareMetalHost | ||
listKind: BareMetalHostList | ||
plural: baremetalhosts | ||
singular: baremetalhost | ||
shortNames: | ||
- bmh | ||
- bmhost | ||
scope: Namespaced | ||
version: v1alpha1 | ||
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. are we good shipping with alpha commitment? 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. For this high touch beta, yes. We'll raise the version level in an upcoming release. 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. alpha is fine. |
||
subresources: | ||
status: {} | ||
additionalPrinterColumns: | ||
- JSONPath: .status.operationalStatus | ||
description: Operational status | ||
name: Status | ||
type: string | ||
- JSONPath: .status.provisioning.state | ||
description: Provisioning status | ||
name: Provisioning Status | ||
type: string | ||
- JSONPath: .spec.machineRef.name | ||
description: Machine using this host | ||
name: Machine | ||
type: string | ||
- JSONPath: .spec.bmc.address | ||
description: Address of management controler | ||
name: BMC | ||
type: string | ||
- JSONPath: .status.hardwareProfile | ||
description: The type of hardware detected | ||
name: Hardware Profile | ||
type: string | ||
- JSONPath: .spec.online | ||
description: Whether the host is online or not | ||
name: Online | ||
type: string | ||
- JSONPath: .status.errorMessage | ||
description: Most recent error | ||
name: Error | ||
type: string |
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.
We need to figure out if we want to ship in this namespace. @enxebre @derekwaynecarr @eparis
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 resource is alpha, i would like to use the community project name for these resources in the interim. before graduating to GA in openshift, i want to understand how these API resources are evolved in community context.