1
0
Fork 0

Prepare release v2.9.0-rc1 (#9334)

This commit is contained in:
Romain 2022-09-14 16:52:03 +02:00 committed by GitHub
parent b351266b2d
commit e9f98fb6eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
45 changed files with 333 additions and 301 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.8/https/tls/#tls-options
// More info: https://doc.traefik.io/traefik/v2.9/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.8/https/tls/#cipher-suites
// More info: https://doc.traefik.io/traefik/v2.9/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.8/https/tls/#curve-preferences
// More info: https://doc.traefik.io/traefik/v2.9/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.8/https/tls/#alpn-protocols
// More info: https://doc.traefik.io/traefik/v2.9/https/tls/#alpn-protocols
ALPNProtocols []string `json:"alpnProtocols,omitempty"`
}