Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
845451c8
Commit
845451c8
authored
Apr 14, 2016
by
Mike Danese
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the build
parent
bbe52993
Show whitespace changes
Inline
Side-by-side
Showing
33 changed files
with
87 additions
and
12 deletions
+87
-12
kubectl.yaml
docs/yaml/kubectl/kubectl.yaml
+2
-0
kubectl_annotate.yaml
docs/yaml/kubectl/kubectl_annotate.yaml
+8
-5
kubectl_api-versions.yaml
docs/yaml/kubectl/kubectl_api-versions.yaml
+2
-0
kubectl_apply.yaml
docs/yaml/kubectl/kubectl_apply.yaml
+2
-0
kubectl_attach.yaml
docs/yaml/kubectl/kubectl_attach.yaml
+2
-0
kubectl_autoscale.yaml
docs/yaml/kubectl/kubectl_autoscale.yaml
+2
-0
kubectl_cluster-info.yaml
docs/yaml/kubectl/kubectl_cluster-info.yaml
+2
-0
kubectl_config.yaml
docs/yaml/kubectl/kubectl_config.yaml
+2
-0
kubectl_convert.yaml
docs/yaml/kubectl/kubectl_convert.yaml
+2
-0
kubectl_cordon.yaml
docs/yaml/kubectl/kubectl_cordon.yaml
+2
-0
kubectl_create.yaml
docs/yaml/kubectl/kubectl_create.yaml
+2
-0
kubectl_delete.yaml
docs/yaml/kubectl/kubectl_delete.yaml
+9
-0
kubectl_describe.yaml
docs/yaml/kubectl/kubectl_describe.yaml
+2
-0
kubectl_drain.yaml
docs/yaml/kubectl/kubectl_drain.yaml
+2
-0
kubectl_edit.yaml
docs/yaml/kubectl/kubectl_edit.yaml
+2
-0
kubectl_exec.yaml
docs/yaml/kubectl/kubectl_exec.yaml
+2
-0
kubectl_explain.yaml
docs/yaml/kubectl/kubectl_explain.yaml
+2
-0
kubectl_expose.yaml
docs/yaml/kubectl/kubectl_expose.yaml
+10
-7
kubectl_get.yaml
docs/yaml/kubectl/kubectl_get.yaml
+2
-0
kubectl_label.yaml
docs/yaml/kubectl/kubectl_label.yaml
+2
-0
kubectl_logs.yaml
docs/yaml/kubectl/kubectl_logs.yaml
+2
-0
kubectl_namespace.yaml
docs/yaml/kubectl/kubectl_namespace.yaml
+2
-0
kubectl_patch.yaml
docs/yaml/kubectl/kubectl_patch.yaml
+2
-0
kubectl_port-forward.yaml
docs/yaml/kubectl/kubectl_port-forward.yaml
+2
-0
kubectl_proxy.yaml
docs/yaml/kubectl/kubectl_proxy.yaml
+2
-0
kubectl_replace.yaml
docs/yaml/kubectl/kubectl_replace.yaml
+2
-0
kubectl_rolling-update.yaml
docs/yaml/kubectl/kubectl_rolling-update.yaml
+2
-0
kubectl_rollout.yaml
docs/yaml/kubectl/kubectl_rollout.yaml
+2
-0
kubectl_run.yaml
docs/yaml/kubectl/kubectl_run.yaml
+2
-0
kubectl_scale.yaml
docs/yaml/kubectl/kubectl_scale.yaml
+2
-0
kubectl_stop.yaml
docs/yaml/kubectl/kubectl_stop.yaml
+2
-0
kubectl_uncordon.yaml
docs/yaml/kubectl/kubectl_uncordon.yaml
+2
-0
kubectl_version.yaml
docs/yaml/kubectl/kubectl_version.yaml
+2
-0
No files found.
docs/yaml/kubectl/kubectl.yaml
View file @
845451c8
...
@@ -11,6 +11,8 @@ options:
...
@@ -11,6 +11,8 @@ options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_annotate.yaml
View file @
845451c8
name
:
annotate
name
:
annotate
synopsis
:
Update the annotations on a resource
synopsis
:
Update the annotations on a resource
description
:
|
-
description
:
|
Update the annotations on one or more resources.
Update the annotations on one or more resources.
An annotation is a key/value pair that can hold larger (compared to a label), and possibly not human-readable, data.
An annotation is a key/value pair that can hold larger (compared to a label), and possibly not human-readable, data.
...
@@ -8,10 +8,11 @@ description: |-
...
@@ -8,10 +8,11 @@ description: |-
If --overwrite is true, then existing annotations can be overwritten, otherwise attempting to overwrite an annotation will result in an error.
If --overwrite is true, then existing annotations can be overwritten, otherwise attempting to overwrite an annotation will result in an error.
If --resource-version is specified, then updates will use this resource version, otherwise the existing resource-version will be used.
If --resource-version is specified, then updates will use this resource version, otherwise the existing resource-version will be used.
Possible resources include (case insensitive): pods (po), services (svc),
Possible resources include (case insensitive):
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
pod (po), service (svc), replicationcontroller (rc),
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
node (no), event (ev), componentstatuse (cs),
horizontalpodautoscalers (hpa), resourcequotas (quota) or secrets.
limitrange (limits), persistentvolume (pv), persistentvolumeclaim (pvc),
horizontalpodautoscaler (hpa), resourcequota (quota), secret
options
:
options
:
-
name
:
all
-
name
:
all
default_value
:
"
false"
default_value
:
"
false"
...
@@ -75,6 +76,8 @@ inherited_options:
...
@@ -75,6 +76,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_api-versions.yaml
View file @
845451c8
...
@@ -8,6 +8,8 @@ inherited_options:
...
@@ -8,6 +8,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_apply.yaml
View file @
845451c8
...
@@ -38,6 +38,8 @@ inherited_options:
...
@@ -38,6 +38,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_attach.yaml
View file @
845451c8
...
@@ -22,6 +22,8 @@ inherited_options:
...
@@ -22,6 +22,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_autoscale.yaml
View file @
845451c8
...
@@ -82,6 +82,8 @@ inherited_options:
...
@@ -82,6 +82,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_cluster-info.yaml
View file @
845451c8
...
@@ -14,6 +14,8 @@ inherited_options:
...
@@ -14,6 +14,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_config.yaml
View file @
845451c8
...
@@ -17,6 +17,8 @@ inherited_options:
...
@@ -17,6 +17,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_convert.yaml
View file @
845451c8
...
@@ -68,6 +68,8 @@ inherited_options:
...
@@ -68,6 +68,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_cordon.yaml
View file @
845451c8
...
@@ -9,6 +9,8 @@ inherited_options:
...
@@ -9,6 +9,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_create.yaml
View file @
845451c8
...
@@ -44,6 +44,8 @@ inherited_options:
...
@@ -44,6 +44,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_delete.yaml
View file @
845451c8
...
@@ -36,6 +36,10 @@ options:
...
@@ -36,6 +36,10 @@ options:
default_value: "true"
default_value: "true"
usage: |
usage: |
If true, include definitions of new APIs via calls to the API server. [default true]
If true, include definitions of new APIs via calls to the API server. [default true]
-
name: now
default_value: "false"
usage: |
If true, resources are force terminated without graceful deletion (same as --grace-period=0).
-
name: output
-
name: output
shorthand: o
shorthand: o
usage: |
usage: |
...
@@ -58,6 +62,8 @@ inherited_options:
...
@@ -58,6 +62,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
@@ -123,6 +129,9 @@ example: |-
...
@@ -123,6 +129,9 @@ example: |-
# Delete pods and services with label name=myLabel.
# Delete pods and services with label name=myLabel.
kubectl delete pods,services -l name=myLabel
kubectl delete pods,services -l name=myLabel
# Delete a pod immediately (no graceful shutdown)
kubectl delete pod foo --now
# Delete a pod with UID 1234-56-7890-234234-456456.
# Delete a pod with UID 1234-56-7890-234234-456456.
kubectl delete pod 1234-56-7890-234234-456456
kubectl delete pod 1234-56-7890-234234-456456
...
...
docs/yaml/kubectl/kubectl_describe.yaml
View file @
845451c8
...
@@ -40,6 +40,8 @@ inherited_options:
...
@@ -40,6 +40,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_drain.yaml
View file @
845451c8
...
@@ -33,6 +33,8 @@ inherited_options:
...
@@ -33,6 +33,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_edit.yaml
View file @
845451c8
...
@@ -58,6 +58,8 @@ inherited_options:
...
@@ -58,6 +58,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_exec.yaml
View file @
845451c8
...
@@ -24,6 +24,8 @@ inherited_options:
...
@@ -24,6 +24,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_explain.yaml
View file @
845451c8
...
@@ -23,6 +23,8 @@ inherited_options:
...
@@ -23,6 +23,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_expose.yaml
View file @
845451c8
name
:
expose
name
:
expose
synopsis
:
|
synopsis
:
|
Take a replication controller, service, deployment or pod and expose it as a new Kubernetes Service
Take a replication controller, service, deployment or pod and expose it as a new Kubernetes Service
description
:
"
Take
a
deployment,
service,
replica
set,
replication
controller,
or
description
:
"
Expose
a
resource
as
a
new
Kubernetes
service.
\n\n
Looks
up
a
deployment,
pod
and
expose
it
as
a
new
Kubernetes
service.
\n\n
Looks
up
a
deployment,
service,
service,
replica
set,
replication
controller
or
pod
by
name
and
uses
the
selector
\n
for
replica
set,
replication
controller
or
pod
by
name
and
uses
the
selector
\n
for
that
that
resource
as
the
selector
for
a
new
service
on
the
specified
port.
A
deployment
resource
as
the
selector
for
a
new
service
on
the
specified
port.
A
deployment
or
or
replica
set
\n
will
be
exposed
as
a
service
only
if
its
selector
is
convertible
replica
set
\n
will
be
exposed
as
a
service
only
if
its
selector
is
convertible
to
to
a
selector
that
service
supports,
\n
i.e.
when
the
selector
contains
only
the
matchLabels
a
selector
that
service
supports,
\n
i.e.
when
the
selector
contains
only
the
matchLabels
component.
Note
that
if
no
port
is
specified
via
\n
--port
and
the
exposed
resource
component.
Note
that
if
no
port
is
specified
via
\n
--port
and
the
exposed
resource
has
multiple
ports,
all
will
be
re-used
by
the
new
service.
Also
if
no
\n
labels
has
multiple
ports,
all
will
be
re-used
by
the
new
service.
Also
if
no
\n
labels
are
specified,
the
new
service
will
re-use
the
labels
from
the
resource
it
exposes."
are
specified,
the
new
service
will
re-use
the
labels
from
the
resource
it
exposes.
\n\n
Possible
resources
include
(case
insensitive):
\n
pod
(po),
service
(svc),
replicationcontroller
(rc),
\n
deployment,
replicaset
(rs)
\n
"
options
:
options
:
-
name
:
container-port
-
name
:
container-port
usage
:
Synonym for --target-port
usage
:
Synonym for --target-port
...
@@ -106,6 +107,8 @@ inherited_options:
...
@@ -106,6 +107,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_get.yaml
View file @
845451c8
...
@@ -82,6 +82,8 @@ inherited_options:
...
@@ -82,6 +82,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_label.yaml
View file @
845451c8
...
@@ -73,6 +73,8 @@ inherited_options:
...
@@ -73,6 +73,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_logs.yaml
View file @
845451c8
...
@@ -46,6 +46,8 @@ inherited_options:
...
@@ -46,6 +46,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_namespace.yaml
View file @
845451c8
...
@@ -11,6 +11,8 @@ inherited_options:
...
@@ -11,6 +11,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_patch.yaml
View file @
845451c8
...
@@ -41,6 +41,8 @@ inherited_options:
...
@@ -41,6 +41,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_port-forward.yaml
View file @
845451c8
...
@@ -12,6 +12,8 @@ inherited_options:
...
@@ -12,6 +12,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_proxy.yaml
View file @
845451c8
...
@@ -64,6 +64,8 @@ inherited_options:
...
@@ -64,6 +64,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_replace.yaml
View file @
845451c8
...
@@ -63,6 +63,8 @@ inherited_options:
...
@@ -63,6 +63,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_rolling-update.yaml
View file @
845451c8
...
@@ -86,6 +86,8 @@ inherited_options:
...
@@ -86,6 +86,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_rollout.yaml
View file @
845451c8
...
@@ -9,6 +9,8 @@ inherited_options:
...
@@ -9,6 +9,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_run.yaml
View file @
845451c8
...
@@ -124,6 +124,8 @@ inherited_options:
...
@@ -124,6 +124,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_scale.yaml
View file @
845451c8
...
@@ -50,6 +50,8 @@ inherited_options:
...
@@ -50,6 +50,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_stop.yaml
View file @
845451c8
...
@@ -51,6 +51,8 @@ inherited_options:
...
@@ -51,6 +51,8 @@ inherited_options:
-
name: api-version
-
name: api-version
usage: |
usage: |
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name: as
usage: Username to impersonate for the operation.
-
name: certificate-authority
-
name: certificate-authority
usage: Path to a cert. file for the certificate authority.
usage: Path to a cert. file for the certificate authority.
-
name: client-certificate
-
name: client-certificate
...
...
docs/yaml/kubectl/kubectl_uncordon.yaml
View file @
845451c8
...
@@ -9,6 +9,8 @@ inherited_options:
...
@@ -9,6 +9,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
docs/yaml/kubectl/kubectl_version.yaml
View file @
845451c8
...
@@ -11,6 +11,8 @@ inherited_options:
...
@@ -11,6 +11,8 @@ inherited_options:
-
name
:
api-version
-
name
:
api-version
usage
:
|
usage
:
|
DEPRECATED: The API version to use when talking to the server
DEPRECATED: The API version to use when talking to the server
-
name
:
as
usage
:
Username to impersonate for the operation.
-
name
:
certificate-authority
-
name
:
certificate-authority
usage
:
Path to a cert. file for the certificate authority.
usage
:
Path to a cert. file for the certificate authority.
-
name
:
client-certificate
-
name
:
client-certificate
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment