Commit 23c21b05 authored by Michael Taufen's avatar Michael Taufen

Fix qosReserved json tag (lowercase qos, instead of uppercase QOS)

The API conventions specify that json keys should start with a lowercase character, and if the key starts with an initialism, all characters in the initialism should be lowercase. See `tlsCipherSuites` as an example. API Conventions: https://github.com/kubernetes/community/blob/master/contributors/devel/api-conventions.md >All letters in the acronym should have the same case, using the >appropriate case for the situation. For example, at the beginning >of a field name, the acronym should be all lowercase, such as "httpGet".
parent 18f6d75f
...@@ -260,7 +260,7 @@ type KubeletConfiguration struct { ...@@ -260,7 +260,7 @@ type KubeletConfiguration struct {
// Requires the QOSReserved feature gate to be enabled. // Requires the QOSReserved feature gate to be enabled.
// Default: nil // Default: nil
// +optional // +optional
QOSReserved map[string]string `json:"QOSReserved,omitempty"` QOSReserved map[string]string `json:"qosReserved,omitempty"`
// runtimeRequestTimeout is the timeout for all runtime requests except long running // runtimeRequestTimeout is the timeout for all runtime requests except long running
// requests - pull, logs, exec and attach. // requests - pull, logs, exec and attach.
// Default: "2m" // Default: "2m"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment