mirror of
https://github.com/outbackdingo/cluster-api-provider-proxmox.git
synced 2026-01-27 10:18:38 +00:00
50 lines
1.9 KiB
Go
50 lines
1.9 KiB
Go
/*
|
|
Copyright 2023-2024 IONOS Cloud.
|
|
|
|
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 infrastructure v1alpha1 API group
|
|
// +kubebuilder:object:generate=true
|
|
// +groupName=infrastructure.cluster.x-k8s.io
|
|
package v1alpha1
|
|
|
|
import (
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
var (
|
|
// GroupVersion is group version used to register these objects.
|
|
GroupVersion = schema.GroupVersion{Group: "infrastructure.cluster.x-k8s.io", Version: "v1alpha1"}
|
|
|
|
// schemeBuilder is used to add go types to the GroupVersionKind scheme.
|
|
schemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
|
|
|
|
// AddToScheme adds the types in this group-version to the given scheme.
|
|
AddToScheme = schemeBuilder.AddToScheme
|
|
|
|
// In order to reduce dependencies for API package consumers, CAPI has diverged from the default kubebuilder scheme builder.
|
|
// This new pattern may also be useful for reducing dependencies in provider API packages.
|
|
// For more information see the implementers guide.
|
|
// https://main.cluster-api.sigs.k8s.io/developer/providers/implementers-guide/create_api#registering-apis-in-the-scheme
|
|
objectTypes = []runtime.Object{}
|
|
)
|
|
|
|
func addKnownTypes(scheme *runtime.Scheme) error {
|
|
scheme.AddKnownTypes(GroupVersion, objectTypes...)
|
|
metav1.AddToGroupVersion(scheme, GroupVersion)
|
|
return nil
|
|
}
|