-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Promote sysctl annotations to fields #63717
Promote sysctl annotations to fields #63717
Conversation
// Sysctls is a white list of allowed sysctls in a pod spec. Each entry | ||
// is either a plain sysctl name or ends in "*" in which case it is considered | ||
// as a prefix of allowed sysctls. | ||
Sysctls []string `json:"sysctls,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.
proto tags are missing
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.
they got added automatically in the generation commit, but having them in this commit makes them easier to review
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.
Moved from the generated code.
@@ -5001,6 +5005,8 @@ type Sysctl struct { | |||
Name string `protobuf:"bytes,1,opt,name=name"` | |||
// Value of a property to set | |||
Value string `protobuf:"bytes,2,opt,name=value"` | |||
// |
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.
It shouldn't be empty, right?
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.
Updated
@@ -946,6 +946,10 @@ type PodSecurityPolicySpec struct { | |||
// is allowed in the "volumes" field. | |||
// +optional | |||
AllowedFlexVolumes []AllowedFlexVolume `json:"allowedFlexVolumes,omitempty" protobuf:"bytes,18,rep,name=allowedFlexVolumes"` | |||
// Sysctls is a white list of allowed sysctls in a pod spec. Each entry |
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.
Make member name lowercase as it will appear in the api doc: s/Sysctls/sysctls/
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.
If we don't support old annotations, perhaps, we don't have to support PSP in the extensions API Group?
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.
What is the semantics of empty lists vs. nil in the annotations? Does empty list mean "no sysctls allowed at all" vs. nil "use the default set" ?
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 original functionality is respected. So
- If the list is empty -> No sysctls are allowed
- If the list is nil -> Use the default sysctls patterns
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.
Make member name lowercase as it will appear in the api doc: s/Sysctls/sysctls/
Done
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 nil/empty distinction is lost when roundtripping via serialized protobuf, and makes for a fairly confusing API
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 nil/empty distinction is lost
Don't we test this in roundtrip tests? We should.
If we change the API semantics (I don't feel strongly, I tend to agree that it is confusing), we should doc that. Do we want to?
@@ -201,6 +201,10 @@ type PodSecurityPolicySpec struct { | |||
// is allowed in the "volumes" field. | |||
// +optional | |||
AllowedFlexVolumes []AllowedFlexVolume `json:"allowedFlexVolumes,omitempty" protobuf:"bytes,18,rep,name=allowedFlexVolumes"` | |||
// Sysctls is a white list of allowed sysctls in a pod spec. Each entry |
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.
Make member name lowercase as it will appear in the api doc: s/Sysctls/sysctls/
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.
Done
/uncc |
Hmm, for some reason the pod.securityContext.Sysctl list is not decoded correctly. The body before decoding in the apiserver:
Once can notice the After decoding the EDIT: So the byte stream is properly unmarshalled into v1.Pod. Though, v1.Pod -> core.Pod drops the Sysctls :-| EDIT2. Grrr, forgot to update |
pkg/apis/core/types.go
Outdated
// Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported | ||
// sysctls (by the container runtime) might fail to launch. | ||
// +optional | ||
Sysctls []Sysctl `json:"sysctls,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.
no json tags on internal types
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.
Removed
pkg/apis/policy/types.go
Outdated
// Sysctls is a white list of allowed sysctls in a pod spec. Each entry | ||
// is either a plain sysctl name or ends in "*" in which case it is considered | ||
// as a prefix of allowed sysctls. | ||
Sysctls []string `json:"sysctls,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.
remove json tags from internal types
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.
Removed
lgtm also from my side. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: derekwaynecarr, ingvagabund, liggitt, sjenning The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[MILESTONENOTIFIER] Milestone Pull Request: Up-to-date for process @derekwaynecarr @ingvagabund @liggitt @sjenning @tallclair @vishh Pull Request Labels
|
ad243bb
to
b1b28f0
Compare
New changes are detected. LGTM label has been removed. |
/test pull-kubernetes-e2e-gce |
/retest |
1 similar comment
/retest |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
What this PR does / why we need it:
Promoting experimental sysctl feature from annotations to API fields.
Special notes for your reviewer:
Following sysctl KEP: kubernetes/community#2093
Release note:
TODO: