52 lines
1.8 KiB
Go
52 lines
1.8 KiB
Go
package v1alpha1
|
|
|
|
import (
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
)
|
|
|
|
// +genclient
|
|
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
|
// +kubebuilder:storageversion
|
|
|
|
// TLSOption is a specification for a TLSOption resource.
|
|
type TLSOption struct {
|
|
metav1.TypeMeta `json:",inline"`
|
|
metav1.ObjectMeta `json:"metadata"`
|
|
|
|
Spec TLSOptionSpec `json:"spec"`
|
|
}
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
// TLSOptionSpec configures TLS for an entry point.
|
|
type TLSOptionSpec struct {
|
|
MinVersion string `json:"minVersion,omitempty"`
|
|
MaxVersion string `json:"maxVersion,omitempty"`
|
|
CipherSuites []string `json:"cipherSuites,omitempty"`
|
|
CurvePreferences []string `json:"curvePreferences,omitempty"`
|
|
ClientAuth ClientAuth `json:"clientAuth,omitempty"`
|
|
SniStrict bool `json:"sniStrict,omitempty"`
|
|
PreferServerCipherSuites bool `json:"preferServerCipherSuites,omitempty"`
|
|
ALPNProtocols []string `json:"alpnProtocols,omitempty"`
|
|
}
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
// ClientAuth defines the parameters of the client authentication part of the TLS connection, if any.
|
|
type ClientAuth struct {
|
|
// SecretName is the name of the referenced Kubernetes Secret to specify the certificate details.
|
|
SecretNames []string `json:"secretNames,omitempty"`
|
|
// +kubebuilder:validation:Enum=NoClientCert;RequestClientCert;VerifyClientCertIfGiven;RequireAndVerifyClientCert
|
|
// ClientAuthType defines the client authentication type to apply.
|
|
ClientAuthType string `json:"clientAuthType,omitempty"`
|
|
}
|
|
|
|
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
|
|
|
// TLSOptionList is a list of TLSOption resources.
|
|
type TLSOptionList struct {
|
|
metav1.TypeMeta `json:",inline"`
|
|
metav1.ListMeta `json:"metadata"`
|
|
|
|
Items []TLSOption `json:"items"`
|
|
}
|