-
Notifications
You must be signed in to change notification settings - Fork 21
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
Add DisableSSLSessionResumption field in PostgresVersion CRD #1390
Conversation
type PostgresVersionTLSSpec struct { | ||
// DisableSSLSessionResumption determines whether to disable or enable Envoy Session Resumption | ||
// +optional | ||
DisableSSLSessionResumption *bool `json:"disableSSLSessionResumption,omitempty"` |
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.
I think we don't need pointer for bool
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.
Yes updated. As we are going to have false as default.
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.
and DisableSessionResumption
is enough
Signed-off-by: souravbiswassanto <saurov@appscode.com>
81c3b80
to
d30f38b
Compare
type PostgresVersionTLSSpec struct { | ||
// DisableSSLSessionResumption determines whether to disable or enable Envoy Session Resumption | ||
// +optional | ||
DisableSSLSessionResumption bool `json:"disableSSLSessionResumption,omitempty"` |
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.
The convention is to call it "stateful session resumption".
Can we reflect the keyword—"stateful" in this variable name?
ref: rfc5077
Signed-off-by: souravbiswassanto <saurov@appscode.com>
No description provided.