1KUBERNETES(1)(kubernetes)                            KUBERNETES(1)(kubernetes)
2
3
4
5Eric Paris Jan 2015
6
7

NAME

9       kubectl api-resources - Print the supported API resources on the server
10
11
12

SYNOPSIS

14       kubectl api-resources [OPTIONS]
15
16
17

DESCRIPTION

19       Print the supported API resources on the server.
20
21
22

OPTIONS

24       --api-group=""      Limit to resources in the specified API group.
25
26
27       --cached=false      Use the cached list of resources if available.
28
29
30       --namespaced=true       If  false, non-namespaced resources will be re‐
31       turned, otherwise returning namespaced resources by default.
32
33
34       --no-headers=false      When using the default or custom-column  output
35       format, don't print headers (default print headers).
36
37
38       -o, --output=""      Output format. One of: (wide, name).
39
40
41       --sort-by=""       If non-empty, sort list of resources using specified
42       field. The field can be either 'name' or 'kind'.
43
44
45       --verbs=[]      Limit to resources that support the specified verbs.
46
47
48

OPTIONS INHERITED FROM PARENT COMMANDS

50       --as=""      Username to impersonate for the operation. User could be a
51       regular user or a service account in a namespace.
52
53
54       --as-group=[]       Group  to  impersonate for the operation, this flag
55       can be repeated to specify multiple groups.
56
57
58       --as-uid=""      UID to impersonate for the operation.
59
60
61       --azure-container-registry-config=""      Path to the  file  containing
62       Azure container registry configuration information.
63
64
65       --cache-dir="/builddir/.kube/cache"      Default cache directory
66
67
68       --certificate-authority=""      Path to a cert file for the certificate
69       authority
70
71
72       --client-certificate=""      Path to a client certificate file for TLS
73
74
75       --client-key=""      Path to a client key file for TLS
76
77
78       --cluster=""      The name of the kubeconfig cluster to use
79
80
81       --context=""      The name of the kubeconfig context to use
82
83
84       --insecure-skip-tls-verify=false      If true, the server's certificate
85       will not be checked for validity. This will make your HTTPS connections
86       insecure
87
88
89       --kubeconfig=""      Path to the kubeconfig file to  use  for  CLI  re‐
90       quests.
91
92
93       --match-server-version=false        Require  server  version  to  match
94       client version
95
96
97       -n, --namespace=""      If present, the namespace scope  for  this  CLI
98       request
99
100
101       --password=""      Password for basic authentication to the API server
102
103
104       --profile="none"         Name   of   profile   to   capture.   One   of
105       (none|cpu|heap|goroutine|threadcreate|block|mutex)
106
107
108       --profile-output="profile.pprof"      Name of the  file  to  write  the
109       profile to
110
111
112       --request-timeout="0"       The length of time to wait before giving up
113       on a single server request. Non-zero values  should  contain  a  corre‐
114       sponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't time‐
115       out requests.
116
117
118       -s, --server=""      The address and port of the Kubernetes API server
119
120
121       --tls-server-name=""      Server name to  use  for  server  certificate
122       validation.  If  it  is  not provided, the hostname used to contact the
123       server is used
124
125
126       --token=""      Bearer token for authentication to the API server
127
128
129       --user=""      The name of the kubeconfig user to use
130
131
132       --username=""      Username for basic authentication to the API server
133
134
135       --version=false      Print version information and quit
136
137
138       --warnings-as-errors=false      Treat warnings received from the server
139       as errors and exit with a non-zero exit code
140
141
142

EXAMPLE

144                # Print the supported API resources
145                kubectl api-resources
146
147                # Print the supported API resources with more information
148                kubectl api-resources -o wide
149
150                # Print the supported API resources sorted by a column
151                kubectl api-resources --sort-by=name
152
153                # Print the supported namespaced resources
154                kubectl api-resources --namespaced=true
155
156                # Print the supported non-namespaced resources
157                kubectl api-resources --namespaced=false
158
159                # Print the supported API resources with a specific APIGroup
160                kubectl api-resources --api-group=extensions
161
162
163
164

SEE ALSO

166       kubectl(1),
167
168
169

HISTORY

171       January  2015,  Originally compiled by Eric Paris (eparis at redhat dot
172       com) based on the kubernetes source material, but hopefully  they  have
173       been automatically generated since!
174
175
176
177Manuals                              User            KUBERNETES(1)(kubernetes)
Impressum