-
Notifications
You must be signed in to change notification settings - Fork 581
Add support for TLS curves in TLSProfile #2583
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -144,6 +144,19 @@ spec: | |
| type: string | ||
| type: array | ||
| x-kubernetes-list-type: atomic | ||
| curves: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since other objects (e.g. the kubeletconfig here) references tlsSecurityProfile type, would the curve be supported for all affected objects and controllers? |
||
| description: |- | ||
| curves is used to specify the elliptic curves that are used during | ||
| the TLS handshake. Operators may remove entries their operands do | ||
| not support. For example, to use X25519 and P-256 (yaml): | ||
|
|
||
| curves: | ||
| - X25519 | ||
| - P-256 | ||
| items: | ||
| type: string | ||
| type: array | ||
| x-kubernetes-list-type: atomic | ||
| minTLSVersion: | ||
| description: |- | ||
| minTLSVersion is used to specify the minimal version of the TLS protocol | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
optional fields should have godoc around what happens if the field is not set (i.e. what is the default behaviour)