1
0
Fork 0

Prepare release v2.10.0-rc1

This commit is contained in:
Ludovic Fernandez 2023-03-22 11:06:05 +01:00 committed by GitHub
parent 54f6144ef2
commit be702c2b61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
64 changed files with 562 additions and 550 deletions

View file

@ -9,7 +9,7 @@ import (
// +kubebuilder:storageversion
// TLSOption is the CRD implementation of a Traefik TLS Option, allowing to configure some parameters of the TLS connection.
// More info: https://doc.traefik.io/traefik/v2.9/https/tls/#tls-options
// More info: https://doc.traefik.io/traefik/v2.10/https/tls/#tls-options
type TLSOption struct {
metav1.TypeMeta `json:",inline"`
// Standard object's metadata.
@ -32,10 +32,10 @@ type TLSOptionSpec struct {
// Default: None.
MaxVersion string `json:"maxVersion,omitempty"`
// CipherSuites defines the list of supported cipher suites for TLS versions up to TLS 1.2.
// More info: https://doc.traefik.io/traefik/v2.9/https/tls/#cipher-suites
// More info: https://doc.traefik.io/traefik/v2.10/https/tls/#cipher-suites
CipherSuites []string `json:"cipherSuites,omitempty"`
// CurvePreferences defines the preferred elliptic curves in a specific order.
// More info: https://doc.traefik.io/traefik/v2.9/https/tls/#curve-preferences
// More info: https://doc.traefik.io/traefik/v2.10/https/tls/#curve-preferences
CurvePreferences []string `json:"curvePreferences,omitempty"`
// ClientAuth defines the server's policy for TLS Client Authentication.
ClientAuth ClientAuth `json:"clientAuth,omitempty"`
@ -46,7 +46,7 @@ type TLSOptionSpec struct {
// Deprecated: https://github.com/golang/go/issues/45430
PreferServerCipherSuites bool `json:"preferServerCipherSuites,omitempty"`
// ALPNProtocols defines the list of supported application level protocols for the TLS handshake, in order of preference.
// More info: https://doc.traefik.io/traefik/v2.9/https/tls/#alpn-protocols
// More info: https://doc.traefik.io/traefik/v2.10/https/tls/#alpn-protocols
ALPNProtocols []string `json:"alpnProtocols,omitempty"`
}