-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jeff Ortel <[email protected]>
- Loading branch information
Showing
6 changed files
with
479 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
Copyright 2019 Red Hat Inc. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
meta "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
// ProfileSelector | ||
// tag:category=tag | ||
// platform:target=kind | ||
type ProfileSelector struct { | ||
Match string `json:"match,omitempty"` | ||
Name string `json:"name,omitempty"` | ||
Capability string `json:"capability,omitempty"` | ||
} | ||
|
||
// TaskProfileSpec defines the desired state of TaskProfile | ||
type TaskProfileSpec struct { | ||
// Addon selector. | ||
Addon []ProfileSelector `json:"addon,omitempty"` | ||
// Component selector. | ||
Component []ProfileSelector `json:"component,omitempty"` | ||
} | ||
|
||
// TaskProfileStatus defines the observed state of TaskProfile | ||
type TaskProfileStatus struct { | ||
// The most recent generation observed by the controller. | ||
// +optional | ||
ObservedGeneration int64 `json:"observedGeneration,omitempty"` | ||
} | ||
|
||
// +genclient | ||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||
// +k8s:openapi-gen=true | ||
// +kubebuilder:subresource:status | ||
// +kubebuilder:printcolumn:name="READY",type=string,JSONPath=".status.conditions[?(@.type=='Ready')].status" | ||
// +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" | ||
type TaskProfile struct { | ||
meta.TypeMeta `json:",inline"` | ||
meta.ObjectMeta `json:"metadata,omitempty"` | ||
Spec TaskProfileSpec `json:"spec,omitempty"` | ||
Status TaskProfileStatus `json:"status,omitempty"` | ||
} | ||
|
||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||
type TaskProfileList struct { | ||
meta.TypeMeta `json:",inline"` | ||
meta.ListMeta `json:"metadata,omitempty"` | ||
Items []TaskProfile `json:"items"` | ||
} | ||
|
||
func init() { | ||
SchemeBuilder.Register(&TaskProfile{}, &TaskProfileList{}) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.