-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add OperatorConfig API (operatorconfigs.csi.ceph.io)
API generated using the following command: "kubebuilder create api --group csi --version v1alpha1 --kind OperatorConfig" Signed-off-by: nb-ohad <[email protected]>
- Loading branch information
Showing
10 changed files
with
4,711 additions
and
0 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,59 @@ | ||
/* | ||
Copyright 2024. | ||
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 ( | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
// OperatorConfigSpec defines the desired state of OperatorConfig | ||
type OperatorConfigSpec struct { | ||
// Operator's log level | ||
LogLevel int `json:"logLevel,omitempty"` | ||
|
||
// Alow overwrite of hardcoded defaults for any driver managed by this opeartor | ||
Check failure on line 28 in api/v1alpha1/operatorconfig_types.go GitHub Actions / codespell
|
||
DriverSpecDefaults *DriverSpec `json:"driverSpecDefaults,omitempty"` | ||
} | ||
|
||
// OperatorConfigStatus defines the observed state of OperatorConfig | ||
type OperatorConfigStatus struct { | ||
} | ||
|
||
//+kubebuilder:object:root=true | ||
//+kubebuilder:subresource:status | ||
|
||
// OperatorConfig is the Schema for the operatorconfigs API | ||
type OperatorConfig struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ObjectMeta `json:"metadata,omitempty"` | ||
|
||
Spec OperatorConfigSpec `json:"spec,omitempty"` | ||
Status OperatorConfigStatus `json:"status,omitempty"` | ||
} | ||
|
||
//+kubebuilder:object:root=true | ||
|
||
// OperatorConfigList contains a list of OperatorConfig | ||
type OperatorConfigList struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ListMeta `json:"metadata,omitempty"` | ||
Items []OperatorConfig `json:"items"` | ||
} | ||
|
||
func init() { | ||
SchemeBuilder.Register(&OperatorConfig{}, &OperatorConfigList{}) | ||
} |
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.