Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Ortel <[email protected]>
  • Loading branch information
jortel committed Mar 2, 2024
1 parent dd711e3 commit b4686eb
Show file tree
Hide file tree
Showing 6 changed files with 479 additions and 20 deletions.
69 changes: 69 additions & 0 deletions k8s/api/tackle/v1alpha1/taskprofile.go
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{})
}
114 changes: 114 additions & 0 deletions k8s/api/tackle/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b4686eb

Please sign in to comment.