@@ -25,7 +25,7 @@ import (
2525// the fields to be serialized.
2626
2727// MultiOrchSpec defines the desired state of MultiOrch.
28- type MultiOrchSpec struct {
28+ type MultiOrchSpec_X struct {
2929 // CellName is the name of the cell this MultiOrch belongs to.
3030 // +kubebuilder:validation:MinLength=1
3131 // +optional
@@ -106,7 +106,7 @@ type MultiOrchSpec struct {
106106}
107107
108108// MultiOrchStatus defines the observed state of MultiOrch.
109- type MultiOrchStatus struct {
109+ type MultiOrchStatus_X struct {
110110 // Ready indicates whether the MultiOrch is healthy and available.
111111 Ready bool `json:"ready"`
112112
@@ -134,7 +134,7 @@ type MultiOrchStatus struct {
134134// +kubebuilder:printcolumn:name="Age",type=date,JSONPath=`.metadata.creationTimestamp`
135135
136136// MultiOrch is the Schema for the multiorches API
137- type MultiOrch struct {
137+ type MultiOrch_X struct {
138138 metav1.TypeMeta `json:",inline"`
139139
140140 // metadata is a standard object metadata
@@ -143,22 +143,22 @@ type MultiOrch struct {
143143
144144 // spec defines the desired state of MultiOrch
145145 // +required
146- Spec MultiOrchSpec `json:"spec"`
146+ Spec MultiOrchSpec_X `json:"spec"`
147147
148148 // status defines the observed state of MultiOrch
149149 // +optional
150- Status MultiOrchStatus `json:"status,omitempty,omitzero"`
150+ Status MultiOrchStatus_X `json:"status,omitempty,omitzero"`
151151}
152152
153153// +kubebuilder:object:root=true
154154
155155// MultiOrchList contains a list of MultiOrch
156- type MultiOrchList struct {
157- metav1.TypeMeta ` json:",inline"`
158- metav1.ListMeta ` json:"metadata,omitempty"`
159- Items []MultiOrch `json:"items"`
156+ type MultiOrchList_X struct {
157+ metav1.TypeMeta ` json:",inline"`
158+ metav1.ListMeta ` json:"metadata,omitempty"`
159+ Items []MultiOrch_X `json:"items"`
160160}
161161
162162func init () {
163- SchemeBuilder .Register (& MultiOrch {}, & MultiOrchList {})
163+ SchemeBuilder .Register (& MultiOrch_X {}, & MultiOrchList_X {})
164164}
0 commit comments