Merge pull request #116 from belgaied2/extra-env-description
Fixed a mistake in the description of ExtraArgs field
This commit is contained in:
commit
335ff6fc59
|
|
@ -335,7 +335,7 @@ type ComponentConfig struct {
|
|||
//+optional
|
||||
ExtraEnv map[string]string `json:"extraEnv,omitempty"`
|
||||
|
||||
// ExtraArgs is a map of command line arguments to pass to a Kubernetes Component command.
|
||||
// ExtraArgs is a list of command line arguments (format: flag=value) to pass to a Kubernetes Component command.
|
||||
//+optional
|
||||
ExtraArgs []string `json:"extraArgs,omitempty"`
|
||||
|
||||
|
|
|
|||
|
|
@ -109,8 +109,8 @@ spec:
|
|||
description: KubeProxyArgs Customized flag for kube-proxy process.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line arguments
|
||||
(format: flag=value) to pass to a Kubernetes Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
@ -135,8 +135,8 @@ spec:
|
|||
description: KubeletArgs Customized flag for kubelet process.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line arguments
|
||||
(format: flag=value) to pass to a Kubernetes Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
|
|||
|
|
@ -127,8 +127,9 @@ spec:
|
|||
process.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line
|
||||
arguments (format: flag=value) to pass to a Kubernetes
|
||||
Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
@ -154,8 +155,9 @@ spec:
|
|||
description: KubeletArgs Customized flag for kubelet process.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line
|
||||
arguments (format: flag=value) to pass to a Kubernetes
|
||||
Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
|
|||
|
|
@ -109,8 +109,8 @@ spec:
|
|||
description: KubeProxyArgs Customized flag for kube-proxy process.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line arguments
|
||||
(format: flag=value) to pass to a Kubernetes Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
@ -135,8 +135,8 @@ spec:
|
|||
description: KubeletArgs Customized flag for kubelet process.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line arguments
|
||||
(format: flag=value) to pass to a Kubernetes Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
@ -601,8 +601,8 @@ spec:
|
|||
of the Cloud Controller Manager.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line arguments
|
||||
(format: flag=value) to pass to a Kubernetes Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
@ -871,8 +871,9 @@ spec:
|
|||
ETCD.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line arguments
|
||||
(format: flag=value) to pass to a Kubernetes Component
|
||||
command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
@ -905,8 +906,8 @@ spec:
|
|||
of the Kube API Server.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line arguments
|
||||
(format: flag=value) to pass to a Kubernetes Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
@ -932,8 +933,8 @@ spec:
|
|||
of the Kube Controller Manager.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line arguments
|
||||
(format: flag=value) to pass to a Kubernetes Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
@ -959,8 +960,8 @@ spec:
|
|||
of the Kube Scheduler.
|
||||
properties:
|
||||
extraArgs:
|
||||
description: ExtraArgs is a map of command line arguments
|
||||
to pass to a Kubernetes Component command.
|
||||
description: 'ExtraArgs is a list of command line arguments
|
||||
(format: flag=value) to pass to a Kubernetes Component command.'
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
|
|
|||
Loading…
Reference in New Issue