File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -419,7 +419,7 @@ func execKubelet(kubeletArgs []string) error {
419
419
for i , s := range os .Args {
420
420
if s == "--vmodule" {
421
421
if i + 1 < len (os .Args ) {
422
- args = append (args , fmt .Sprintf ("--vmodule=" , os .Args [i + 1 ]))
422
+ args = append (args , fmt .Sprintf ("--vmodule=%q " , os .Args [i + 1 ]))
423
423
break
424
424
}
425
425
}
Original file line number Diff line number Diff line change @@ -1873,7 +1873,7 @@ func describeSecurityContextConstraints(scc *securityapi.SecurityContextConstrai
1873
1873
1874
1874
fmt .Fprintf (out , "Settings:\t \n " )
1875
1875
fmt .Fprintf (out , " Allow Privileged:\t %t\n " , scc .AllowPrivilegedContainer )
1876
- fmt .Fprintf (out , " Allow Privilege Escalation:\t %t \n " , scc .AllowPrivilegeEscalation )
1876
+ fmt .Fprintf (out , " Allow Privilege Escalation:\t %v \n " , scc .AllowPrivilegeEscalation )
1877
1877
fmt .Fprintf (out , " Default Add Capabilities:\t %s\n " , capsToString (scc .DefaultAddCapabilities ))
1878
1878
fmt .Fprintf (out , " Required Drop Capabilities:\t %s\n " , capsToString (scc .RequiredDropCapabilities ))
1879
1879
fmt .Fprintf (out , " Allowed Capabilities:\t %s\n " , capsToString (scc .AllowedCapabilities ))
You can’t perform that action at this time.
0 commit comments