We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1517fca commit fe308faCopy full SHA for fe308fa
config/v1/types_tlssecurityprofile.go
@@ -213,6 +213,14 @@ type TLSProfileSpec struct {
213
//
214
// +listType=atomic
215
Ciphers []string `json:"ciphers"`
216
+ // curves is used to specify the elliptic curves that are used during
217
+ // the TLS handshake. Operators may remove entries their operands do
218
+ // not support. For example, to use X25519 and P-256 (yaml):
219
+ //
220
+ // curves:
221
+ // - X25519
222
+ // - P-256
223
+ Curves []string `json:"curves.omitempty"`
224
// minTLSVersion is used to specify the minimal version of the TLS protocol
225
// that is negotiated during the TLS handshake. For example, to use TLS
226
// versions 1.1, 1.2 and 1.3 (yaml):
0 commit comments