Bug 1631108
| Summary: | feature-flags not passed to kubelet with node-config kubeletArguments or proxyArguments | ||||||
|---|---|---|---|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Justin Pierce <jupierce> | ||||
| Component: | Node | Assignee: | Seth Jennings <sjenning> | ||||
| Status: | CLOSED NOTABUG | QA Contact: | DeShuai Ma <dma> | ||||
| Severity: | unspecified | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 3.11.0 | CC: | aos-bugs, dzhukous, jokerman, jupierce, mmccomas | ||||
| Target Milestone: | --- | ||||||
| Target Release: | 3.11.z | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2018-10-02 13:35:45 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
Justin Pierce
2018-09-19 23:06:33 UTC
Thanks sjennings - grepping the configmap uncovered my error. There was already a `feature-gates:` entry in the node-config prior to my addition. The original was taking precedence over the `feature-gates` key I was adding. Apologies for the misfire. The following are passed successfully to the kubelet. >>>> kubeletArguments: pod-max-pids: - '1024' feature-gates: - RotateKubeletClientCertificate=true,RotateKubeletServerCertificate=true,SupportPodPidsLimit=true .... <<<< appears on the node as: >>>> [root@ip-172-31-56-246 ~]# ps `pidof hyperkube` PID TTY STAT TIME COMMAND 27042 ? Ssl 0:58 /usr/bin/hyperkube kubelet ... --fail-swap-on=false --featu re-gates=RotateKubeletClientCertificate=true,RotateKubeletServerCertificate=true,SupportPodPidsLimit=true ... --pod-max-pids=1024 .... <<<< |