traefik/pkg/provider/kubernetes/crd/traefikio/v1alpha1/tlsstore.go

59 lines
2.1 KiB
Go
Raw Normal View History

2020-02-24 16:14:06 +00:00
package v1alpha1
import (
2023-02-03 14:24:05 +00:00
"github.com/traefik/traefik/v3/pkg/tls"
2020-02-24 16:14:06 +00:00
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// +genclient
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
// +kubebuilder:storageversion
2020-02-24 16:14:06 +00:00
// TLSStore is the CRD implementation of a Traefik TLS Store.
// For the time being, only the TLSStore named default is supported.
// This means that you cannot have two stores that are named default in different Kubernetes namespaces.
2022-12-05 15:58:04 +00:00
// More info: https://doc.traefik.io/traefik/v3.0/https/tls/#certificates-stores
2020-02-24 16:14:06 +00:00
type TLSStore struct {
metav1.TypeMeta `json:",inline"`
// Standard object's metadata.
// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
2020-02-24 16:14:06 +00:00
metav1.ObjectMeta `json:"metadata"`
Spec TLSStoreSpec `json:"spec"`
}
// +k8s:deepcopy-gen=true
// TLSStoreSpec defines the desired state of a TLSStore.
2020-02-24 16:14:06 +00:00
type TLSStoreSpec struct {
// DefaultCertificate defines the default certificate configuration.
DefaultCertificate *Certificate `json:"defaultCertificate,omitempty"`
// DefaultGeneratedCert defines the default generated certificate configuration.
DefaultGeneratedCert *tls.GeneratedCert `json:"defaultGeneratedCert,omitempty"`
// Certificates is a list of secret names, each secret holding a key/certificate pair to add to the store.
Certificates []Certificate `json:"certificates,omitempty"`
2020-02-24 16:14:06 +00:00
}
// +k8s:deepcopy-gen=true
// Certificate holds a secret name for the TLSStore resource.
type Certificate struct {
// SecretName is the name of the referenced Kubernetes Secret to specify the certificate details.
SecretName string `json:"secretName"`
2020-02-24 16:14:06 +00:00
}
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
// TLSStoreList is a collection of TLSStore resources.
2020-02-24 16:14:06 +00:00
type TLSStoreList struct {
metav1.TypeMeta `json:",inline"`
// Standard object's metadata.
// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
2020-02-24 16:14:06 +00:00
metav1.ListMeta `json:"metadata"`
// Items is the list of TLSStore.
2020-02-24 16:14:06 +00:00
Items []TLSStore `json:"items"`
}