Skip to content

Commit d67b8ce

Browse files
authored
Merge pull request #19137 from liggitt/rebase-1.10.0
rebase 1.10.0
2 parents c21c6a7 + b61c00c commit d67b8ce

File tree

10,991 files changed

+2316720
-677227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

10,991 files changed

+2316720
-677227
lines changed

Godeps/Godeps.json

Lines changed: 8 additions & 10470 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/docs/_topic_map.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,20 @@
128128
Topics:
129129
- Name: v1beta1.PodDisruptionBudget
130130
File: v1beta1.PodDisruptionBudget
131+
- Name: v1beta1.PodSecurityPolicy
132+
File: v1beta1.PodSecurityPolicy
131133
- Name: /apis/admissionregistration.k8s.io/v1beta1
132134
Dir: apis-admissionregistration.k8s.io
133135
Topics:
134136
- Name: v1beta1.MutatingWebhookConfiguration
135137
File: v1beta1.MutatingWebhookConfiguration
136138
- Name: v1beta1.ValidatingWebhookConfiguration
137139
File: v1beta1.ValidatingWebhookConfiguration
140+
- Name: /apis/apiregistration.k8s.io/v1
141+
Dir: apis-apiregistration.k8s.io
142+
Topics:
143+
- Name: v1.APIService
144+
File: v1.APIService
138145
- Name: /apis/apiregistration.k8s.io/v1beta1
139146
Dir: apis-apiregistration.k8s.io
140147
Topics:
@@ -219,6 +226,8 @@
219226
Topics:
220227
- Name: v1beta1.StorageClass
221228
File: v1beta1.StorageClass
229+
- Name: v1beta1.VolumeAttachment
230+
File: v1beta1.VolumeAttachment
222231
- Name: /apis/apps.openshift.io/v1
223232
Dir: apis-apps.openshift.io
224233
Topics:

api/docs/api/v1.APIResourceList.adoc

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,47 @@ $ curl -k \
122122
* application/vnd.kubernetes.protobuf
123123

124124

125+
[[Get-apis-apiregistration.k8s.io-v1]]
126+
=== Get all APIResourceLists
127+
Get available resources
128+
129+
==== HTTP request
130+
----
131+
GET /apis/apiregistration.k8s.io/v1/ HTTP/1.1
132+
Authorization: Bearer $TOKEN
133+
Accept: application/json
134+
Connection: close
135+
----
136+
137+
==== Curl request
138+
----
139+
$ curl -k \
140+
-H "Authorization: Bearer $TOKEN" \
141+
-H 'Accept: application/json' \
142+
https://$ENDPOINT/apis/apiregistration.k8s.io/v1/
143+
----
144+
145+
==== Responses
146+
[cols="1,5", options="header"]
147+
|===
148+
|HTTP Code|Schema
149+
|200 OK|v1.APIResourceList
150+
|401 Unauthorized|
151+
|===
152+
153+
==== Consumes
154+
155+
* application/json
156+
* application/yaml
157+
* application/vnd.kubernetes.protobuf
158+
159+
==== Produces
160+
161+
* application/json
162+
* application/yaml
163+
* application/vnd.kubernetes.protobuf
164+
165+
125166
[[Get-apis-apiregistration.k8s.io-v1beta1]]
126167
=== Get all APIResourceLists
127168
Get available resources

api/docs/api/v1.ComponentStatus.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ $ curl -k \
186186
The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
187187
|pretty|If 'true', then the output is pretty printed.
188188
|resourceVersion|When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
189-
|timeoutSeconds|Timeout for the list/watch call.
189+
|timeoutSeconds|Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
190190
|watch|Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
191191
|===
192192

api/docs/api/v1.ConfigMap.adoc

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ Expand or mouse-over a field for more information about it.
1919
++++
2020
<pre>
2121
<div style="margin-left:13px;"><span title="(string) APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources">apiVersion</span>:
22-
</div><details><summary><span title="(object) Data contains the configuration data. Each key must consist of alphanumeric characters, &#39;-&#39;, &#39;_&#39; or &#39;.&#39;.">data</span>:
22+
</div><details><summary><span title="(object) BinaryData contains the binary data. Each key must consist of alphanumeric characters, &#39;-&#39;, &#39;_&#39; or &#39;.&#39;. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.">binaryData</span>:
23+
</summary><div style="margin-left:13px;"> <span title="(string)">[string]</span>:
24+
</div></details><details><summary><span title="(object) Data contains the configuration data. Each key must consist of alphanumeric characters, &#39;-&#39;, &#39;_&#39; or &#39;.&#39;. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.">data</span>:
2325
</summary><div style="margin-left:13px;"> <span title="(string)">[string]</span>:
2426
</div></details><div style="margin-left:13px;"><span title="(string) Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds">kind</span>:
2527
</div><details open><summary><span title="(v1.ObjectMeta) Standard object&#39;s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata">metadata</span>:
@@ -337,7 +339,7 @@ $ curl -k \
337339

338340
The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
339341
|resourceVersion|When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
340-
|timeoutSeconds|Timeout for the list/watch call.
342+
|timeoutSeconds|Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
341343
|watch|Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
342344
|===
343345

@@ -402,7 +404,7 @@ $ curl -k \
402404

403405
The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
404406
|resourceVersion|When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
405-
|timeoutSeconds|Timeout for the list/watch call.
407+
|timeoutSeconds|Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
406408
|watch|Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
407409
|===
408410

@@ -468,7 +470,7 @@ $ curl -k \
468470
The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
469471
|pretty|If 'true', then the output is pretty printed.
470472
|resourceVersion|When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
471-
|timeoutSeconds|Timeout for the list/watch call.
473+
|timeoutSeconds|Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
472474
|watch|Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
473475
|===
474476

@@ -526,7 +528,7 @@ $ curl -k \
526528
The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
527529
|pretty|If 'true', then the output is pretty printed.
528530
|resourceVersion|When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
529-
|timeoutSeconds|Timeout for the list/watch call.
531+
|timeoutSeconds|Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
530532
|watch|Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
531533
|===
532534

@@ -591,7 +593,7 @@ $ curl -k \
591593
The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
592594
|pretty|If 'true', then the output is pretty printed.
593595
|resourceVersion|When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
594-
|timeoutSeconds|Timeout for the list/watch call.
596+
|timeoutSeconds|Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
595597
|watch|Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
596598
|===
597599

@@ -889,7 +891,7 @@ $ curl -k \
889891

890892
The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
891893
|resourceVersion|When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
892-
|timeoutSeconds|Timeout for the list/watch call.
894+
|timeoutSeconds|Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
893895
|watch|Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
894896
|===
895897

0 commit comments

Comments
 (0)