mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 01:26:59 +02:00
* chore(crd): move code to `api/v1alpha1` * fix license check * fix linter * remove obsolete exclusion on linter
63 lines
2.1 KiB
Go
63 lines
2.1 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
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"
|
|
|
|
"sigs.k8s.io/external-dns/endpoint"
|
|
)
|
|
|
|
// +genclient
|
|
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
|
|
|
// DNSEndpoint is a contract that a user-specified CRD must implement to be used as a source for external-dns.
|
|
// The user-specified CRD should also have the status sub-resource.
|
|
// +k8s:openapi-gen=true
|
|
// +groupName=externaldns.k8s.io
|
|
// +kubebuilder:resource:path=dnsendpoints
|
|
// +kubebuilder:subresource:status
|
|
// +kubebuilder:metadata:annotations="api-approved.kubernetes.io=https://github.com/kubernetes-sigs/external-dns/pull/2007"
|
|
// +versionName=v1alpha1
|
|
type DNSEndpoint struct {
|
|
metav1.TypeMeta `json:",inline"`
|
|
metav1.ObjectMeta `json:"metadata,omitempty"`
|
|
|
|
Spec DNSEndpointSpec `json:"spec,omitempty"`
|
|
Status DNSEndpointStatus `json:"status,omitempty"`
|
|
}
|
|
|
|
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
|
// DNSEndpointList is a list of DNSEndpoint objects
|
|
type DNSEndpointList struct {
|
|
metav1.TypeMeta `json:",inline"`
|
|
metav1.ListMeta `json:"metadata,omitempty"`
|
|
Items []DNSEndpoint `json:"items"`
|
|
}
|
|
|
|
// DNSEndpointSpec defines the desired state of DNSEndpoint
|
|
type DNSEndpointSpec struct {
|
|
Endpoints []*endpoint.Endpoint `json:"endpoints,omitempty"`
|
|
}
|
|
|
|
// DNSEndpointStatus defines the observed state of DNSEndpoint
|
|
type DNSEndpointStatus struct {
|
|
// The generation observed by the external-dns controller.
|
|
// +optional
|
|
ObservedGeneration int64 `json:"observedGeneration,omitempty"`
|
|
}
|