forked from opendatahub-io/opendatahub-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initializing the DSCInitialization api.
Adding scafolding for status reporting. opendatahub-io#158 (cherry picked from commit da30505)
- Loading branch information
Showing
20 changed files
with
987 additions
and
5 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
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,88 @@ | ||
/* | ||
Copyright 2023. | ||
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 ( | ||
conditionsv1 "github.com/openshift/custom-resource-status/conditions/v1" | ||
corev1 "k8s.io/api/core/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
// List of constants to show different different reconciliation messages and statuses. | ||
const ( | ||
ReconcileFailed = "ReconcileFailed" | ||
ReconcileInit = "ReconcileInit" | ||
ReconcileCompleted = "ReconcileCompleted" | ||
ReconcileCompletedMessage = "Reconcile completed successfully" | ||
) | ||
|
||
// DSCInitializationSpec defines the desired state of DSCInitiatlization | ||
type DSCInitializationSpec struct { | ||
// INSERT ADDITIONAL SPEC FIELDS - desired state of cluster | ||
// Important: Run "make" to regenerate code after modifying this file | ||
|
||
// Foo is an example field of DSCInitiatlization. Edit dscinitiatlization_types.go to remove/update | ||
Foo string `json:"foo,omitempty"` | ||
} | ||
|
||
// DSCInitiatlizationStatus defines the observed state of DSCInitiatlization | ||
type DSCInitiatlizationStatus struct { | ||
// Phase describes the Phase of DSCInitializationStatus | ||
// This is used by OLM UI to provide status information | ||
// to the user | ||
Phase string `json:"phase,omitempty"` | ||
|
||
// Conditions describes the state of the DSCInitializationStatus resource. | ||
// +optional | ||
Conditions []conditionsv1.Condition `json:"conditions,omitempty"` | ||
|
||
// RelatedObjects is a list of objects created and maintained by this | ||
// operator. Object references will be added to this list after they have | ||
// been created AND found in the cluster. | ||
// +optional | ||
RelatedObjects []corev1.ObjectReference `json:"relatedObjects,omitempty"` | ||
ErrorMessage string `json:"errorMessage,omitempty"` | ||
} | ||
|
||
//+kubebuilder:object:root=true | ||
//+kubebuilder:subresource:status | ||
//+kubebuilder:printcolumn:name="Age",type=date,JSONPath=.metadata.creationTimestamp | ||
//+kubebuilder:printcolumn:name="Phase",type=string,JSONPath=.status.phase,description="Current Phase" | ||
//+kubebuilder:printcolumn:name="Created At",type=string,JSONPath=.metadata.creationTimestamp | ||
//+operator-sdk:csv:customresourcedefinitions:displayName="DSC Initialization" | ||
|
||
// DSCInitialization is the Schema for the dscinitiatlizations API | ||
type DSCInitialization struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ObjectMeta `json:"metadata,omitempty"` | ||
|
||
Spec DSCInitializationSpec `json:"spec,omitempty"` | ||
Status DSCInitiatlizationStatus `json:"status,omitempty"` | ||
} | ||
|
||
//+kubebuilder:object:root=true | ||
|
||
// DSCInitializationList contains a list of DSCInitiatlization | ||
type DSCInitializationList struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ListMeta `json:"metadata,omitempty"` | ||
Items []DSCInitialization `json:"items"` | ||
} | ||
|
||
func init() { | ||
SchemeBuilder.Register(&DSCInitialization{}, &DSCInitializationList{}) | ||
} |
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,36 @@ | ||
/* | ||
Copyright 2023. | ||
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 contains API Schema definitions for the dscinitialization v1alpha1 API group | ||
// +kubebuilder:object:generate=true | ||
// +groupName=dscinitialization.opendatahub.io | ||
package v1alpha1 | ||
|
||
import ( | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
"sigs.k8s.io/controller-runtime/pkg/scheme" | ||
) | ||
|
||
var ( | ||
// GroupVersion is group version used to register these objects | ||
GroupVersion = schema.GroupVersion{Group: "dscinitialization.opendatahub.io", Version: "v1alpha1"} | ||
|
||
// SchemeBuilder is used to add go types to the GroupVersionKind scheme | ||
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} | ||
|
||
// AddToScheme adds the types in this group-version to the given scheme. | ||
AddToScheme = SchemeBuilder.AddToScheme | ||
) |
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.