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
6d6f338f
Commit
6d6f338f
authored
Sep 01, 2015
by
Avesh Agarwal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds servicesaccounts to kubectl get/describe cli help and docs.
parent
d3b1e468
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
kubectl-describe.1
docs/man/man1/kubectl-describe.1
+1
-1
kubectl-get.1
docs/man/man1/kubectl-get.1
+1
-1
kubectl_describe.md
docs/user-guide/kubectl/kubectl_describe.md
+1
-1
kubectl_get.md
docs/user-guide/kubectl/kubectl_get.md
+1
-1
describe.go
pkg/kubectl/cmd/describe.go
+1
-1
get.go
pkg/kubectl/cmd/get.go
+1
-1
No files found.
docs/man/man1/kubectl-describe.1
View file @
6d6f338f
...
@@ -30,7 +30,7 @@ exists, it will output details for every resource that has a name prefixed with
...
@@ -30,7 +30,7 @@ exists, it will output details for every resource that has a name prefixed with
Possible resource types include (case insensitive): pods (po), services (svc),
Possible resource types include (case insensitive): pods (po), services (svc),
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
namespaces (ns) or secrets.
namespaces (ns)
, serviceaccounts
or secrets.
.SH OPTIONS
.SH OPTIONS
...
...
docs/man/man1/kubectl-get.1
View file @
6d6f338f
...
@@ -19,7 +19,7 @@ Display one or many resources.
...
@@ -19,7 +19,7 @@ Display one or many resources.
Possible resource types include (case insensitive): pods (po), services (svc),
Possible resource types include (case insensitive): pods (po), services (svc),
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
resourcequotas (quota), namespaces (ns), endpoints (ep) or secrets.
resourcequotas (quota), namespaces (ns), endpoints (ep)
, serviceaccounts
or secrets.
.PP
.PP
By specifying the output as 'template' and providing a Go template as the value
By specifying the output as 'template' and providing a Go template as the value
...
...
docs/user-guide/kubectl/kubectl_describe.md
View file @
6d6f338f
...
@@ -51,7 +51,7 @@ exists, it will output details for every resource that has a name prefixed with
...
@@ -51,7 +51,7 @@ exists, it will output details for every resource that has a name prefixed with
Possible resource types include (case insensitive): pods (po), services (svc),
Possible resource types include (case insensitive): pods (po), services (svc),
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
namespaces (ns) or secrets.
namespaces (ns)
, serviceaccounts
or secrets.
```
```
kubectl describe (-f FILENAME | TYPE [NAME_PREFIX | -l label] | TYPE/NAME)
kubectl describe (-f FILENAME | TYPE [NAME_PREFIX | -l label] | TYPE/NAME)
...
...
docs/user-guide/kubectl/kubectl_get.md
View file @
6d6f338f
...
@@ -43,7 +43,7 @@ Display one or many resources.
...
@@ -43,7 +43,7 @@ Display one or many resources.
Possible resource types include (case insensitive): pods (po), services (svc),
Possible resource types include (case insensitive): pods (po), services (svc),
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
resourcequotas (quota), namespaces (ns), endpoints (ep) or secrets.
resourcequotas (quota), namespaces (ns), endpoints (ep)
, serviceaccounts
or secrets.
By specifying the output as 'template' and providing a Go template as the value
By specifying the output as 'template' and providing a Go template as the value
of the --template flag, you can filter the attributes of the fetched resource(s).
of the --template flag, you can filter the attributes of the fetched resource(s).
...
...
pkg/kubectl/cmd/describe.go
View file @
6d6f338f
...
@@ -52,7 +52,7 @@ exists, it will output details for every resource that has a name prefixed with
...
@@ -52,7 +52,7 @@ exists, it will output details for every resource that has a name prefixed with
Possible resource types include (case insensitive): pods (po), services (svc),
Possible resource types include (case insensitive): pods (po), services (svc),
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
namespaces (ns) or secrets.`
namespaces (ns)
, serviceaccounts
or secrets.`
describe_example
=
`# Describe a node
describe_example
=
`# Describe a node
$ kubectl describe nodes kubernetes-minion-emt8.c.myproject.internal
$ kubectl describe nodes kubernetes-minion-emt8.c.myproject.internal
...
...
pkg/kubectl/cmd/get.go
View file @
6d6f338f
...
@@ -39,7 +39,7 @@ const (
...
@@ -39,7 +39,7 @@ const (
Possible resource types include (case insensitive): pods (po), services (svc),
Possible resource types include (case insensitive): pods (po), services (svc),
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
resourcequotas (quota), namespaces (ns), endpoints (ep) or secrets.
resourcequotas (quota), namespaces (ns), endpoints (ep)
, serviceaccounts
or secrets.
By specifying the output as 'template' and providing a Go template as the value
By specifying the output as 'template' and providing a Go template as the value
of the --template flag, you can filter the attributes of the fetched resource(s).`
of the --template flag, you can filter the attributes of the fetched resource(s).`
...
...
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