openapi: 3.2.0 info: title: Kpack API version: v0.1.3 tags: - name: kpack paths: /apis/kpack.io/v1alpha1/builders: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true get: description: list or watch builders tags: - kpack operationId: listAllBuilders parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.BuilderList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.BuilderList' '401': description: Unauthorized summary: List all builders x-summary-source: derived /apis/kpack.io/v1alpha1/builds: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true get: description: list or watch builds tags: - kpack operationId: listAllBuilds parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.BuildList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.BuildList' '401': description: Unauthorized summary: List all builds x-summary-source: derived /apis/kpack.io/v1alpha1/clusterbuilders: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true get: description: list or watch cluster scoped clusterbuilders tags: - kpack operationId: listAllClusterbuilders parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilderList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilderList' '401': description: Unauthorized summary: List all clusterbuilders x-summary-source: derived post: description: Creates a cluster scoped ClusterBuilder tags: - kpack operationId: createClusterBuilder responses: '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' '401': description: Unauthorized requestBody: content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' description: The JSON schema of the Resource to create. required: true summary: Create cluster builder x-summary-source: derived /apis/kpack.io/v1alpha1/clusterbuilders/{name}: parameters: - description: the custom object's name name: name in: path required: true schema: type: string get: description: Returns a cluster scoped ClusterBuilder tags: - kpack operationId: getClusterBuilder responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' '401': description: Unauthorized summary: Get cluster builder x-summary-source: derived put: description: replace the specified cluster scoped ClusterBuilder tags: - kpack operationId: replaceClusterBuilder responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' description: The JSON schema of the Resource to replace. required: true summary: Replace cluster builder x-summary-source: derived delete: description: Deletes the specified cluster scoped ClusterBuilder tags: - kpack operationId: deleteClusterBuilder parameters: - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. name: gracePeriodSeconds in: query schema: type: integer uniqueItems: true - description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both.' name: orphanDependents in: query schema: type: boolean uniqueItems: true - description: Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. name: propagationPolicy in: query schema: type: string uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions' summary: Delete cluster builder x-summary-source: derived patch: description: patch the specified cluster scoped ClusterBuilder tags: - kpack operationId: patchClusterBuilder responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' description: The JSON schema of the Resource to patch. required: true summary: Patch cluster builder x-summary-source: derived /apis/kpack.io/v1alpha1/clusterbuilders/{name}/status: parameters: - description: the custom object's name name: name in: path required: true schema: type: string get: description: read status of the specified cluster scoped ClusterBuilder tags: - kpack operationId: getClusterBuilderStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' '401': description: Unauthorized summary: Get cluster builder status x-summary-source: derived put: description: replace status of the specified cluster scoped ClusterBuilder tags: - kpack operationId: replaceClusterBuilderStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' required: true summary: Replace cluster builder status x-summary-source: derived patch: description: partially update status of the specified cluster scoped ClusterBuilder tags: - kpack operationId: patchClusterBuilderStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' required: true summary: Patch cluster builder status x-summary-source: derived /apis/kpack.io/v1alpha1/clusterstacks: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true get: description: list or watch cluster scoped clusterstacks tags: - kpack operationId: listAllClusterstacks parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStackList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStackList' '401': description: Unauthorized summary: List all clusterstacks x-summary-source: derived post: description: Creates a cluster scoped ClusterStack tags: - kpack operationId: createClusterStack responses: '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' '401': description: Unauthorized requestBody: content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' description: The JSON schema of the Resource to create. required: true summary: Create cluster stack x-summary-source: derived /apis/kpack.io/v1alpha1/clusterstacks/{name}: parameters: - description: the custom object's name name: name in: path required: true schema: type: string get: description: Returns a cluster scoped ClusterStack tags: - kpack operationId: getClusterStack responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' '401': description: Unauthorized summary: Get cluster stack x-summary-source: derived put: description: replace the specified cluster scoped ClusterStack tags: - kpack operationId: replaceClusterStack responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' description: The JSON schema of the Resource to replace. required: true summary: Replace cluster stack x-summary-source: derived delete: description: Deletes the specified cluster scoped ClusterStack tags: - kpack operationId: deleteClusterStack parameters: - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. name: gracePeriodSeconds in: query schema: type: integer uniqueItems: true - description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both.' name: orphanDependents in: query schema: type: boolean uniqueItems: true - description: Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. name: propagationPolicy in: query schema: type: string uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions' summary: Delete cluster stack x-summary-source: derived patch: description: patch the specified cluster scoped ClusterStack tags: - kpack operationId: patchClusterStack responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' description: The JSON schema of the Resource to patch. required: true summary: Patch cluster stack x-summary-source: derived /apis/kpack.io/v1alpha1/clusterstacks/{name}/status: parameters: - description: the custom object's name name: name in: path required: true schema: type: string get: description: read status of the specified cluster scoped ClusterStack tags: - kpack operationId: getClusterStackStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' '401': description: Unauthorized summary: Get cluster stack status x-summary-source: derived put: description: replace status of the specified cluster scoped ClusterStack tags: - kpack operationId: replaceClusterStackStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' required: true summary: Replace cluster stack status x-summary-source: derived patch: description: partially update status of the specified cluster scoped ClusterStack tags: - kpack operationId: patchClusterStackStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' required: true summary: Patch cluster stack status x-summary-source: derived /apis/kpack.io/v1alpha1/clusterstores: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true get: description: list or watch cluster scoped clusterstores tags: - kpack operationId: listAllClusterstores parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStoreList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStoreList' '401': description: Unauthorized summary: List all clusterstores x-summary-source: derived post: description: Creates a cluster scoped ClusterStore tags: - kpack operationId: createClusterStore responses: '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' '401': description: Unauthorized requestBody: content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' description: The JSON schema of the Resource to create. required: true summary: Create cluster store x-summary-source: derived /apis/kpack.io/v1alpha1/clusterstores/{name}: parameters: - description: the custom object's name name: name in: path required: true schema: type: string get: description: Returns a cluster scoped ClusterStore tags: - kpack operationId: getClusterStore responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' '401': description: Unauthorized summary: Get cluster store x-summary-source: derived put: description: replace the specified cluster scoped ClusterStore tags: - kpack operationId: replaceClusterStore responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' description: The JSON schema of the Resource to replace. required: true summary: Replace cluster store x-summary-source: derived delete: description: Deletes the specified cluster scoped ClusterStore tags: - kpack operationId: deleteClusterStore parameters: - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. name: gracePeriodSeconds in: query schema: type: integer uniqueItems: true - description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both.' name: orphanDependents in: query schema: type: boolean uniqueItems: true - description: Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. name: propagationPolicy in: query schema: type: string uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions' summary: Delete cluster store x-summary-source: derived patch: description: patch the specified cluster scoped ClusterStore tags: - kpack operationId: patchClusterStore responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' description: The JSON schema of the Resource to patch. required: true summary: Patch cluster store x-summary-source: derived /apis/kpack.io/v1alpha1/clusterstores/{name}/status: parameters: - description: the custom object's name name: name in: path required: true schema: type: string get: description: read status of the specified cluster scoped ClusterStore tags: - kpack operationId: getClusterStoreStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' '401': description: Unauthorized summary: Get cluster store status x-summary-source: derived put: description: replace status of the specified cluster scoped ClusterStore tags: - kpack operationId: replaceClusterStoreStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' required: true summary: Replace cluster store status x-summary-source: derived patch: description: partially update status of the specified cluster scoped ClusterStore tags: - kpack operationId: patchClusterStoreStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' required: true summary: Patch cluster store status x-summary-source: derived /apis/kpack.io/v1alpha1/images: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true get: description: list or watch images tags: - kpack operationId: listAllImages parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ImageList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ImageList' '401': description: Unauthorized summary: List all images x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/builders: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true - description: The custom resource's namespace name: namespace in: path required: true schema: type: string get: description: list or watch namespace scoped builders tags: - kpack operationId: listNamespacedBuilders parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.BuilderList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.BuilderList' '401': description: Unauthorized summary: List namespaced builders x-summary-source: derived post: description: Creates a namespace scoped Builder tags: - kpack operationId: createBuilder responses: '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' '401': description: Unauthorized requestBody: content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' description: The JSON schema of the Resource to create. required: true summary: Create builder x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/builders/{name}: parameters: - description: The custom resource's namespace name: namespace in: path required: true schema: type: string - description: the custom object's name name: name in: path required: true schema: type: string get: description: Returns a namespace scoped custom object tags: - kpack operationId: getBuilder responses: '200': description: A single Resource content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' '401': description: Unauthorized summary: Get builder x-summary-source: derived put: description: replace the specified namespace scoped custom object tags: - kpack operationId: replaceBuilder responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' description: The JSON schema of the Resource to replace. required: true summary: Replace builder x-summary-source: derived delete: description: Deletes the specified namespace scoped Builder tags: - kpack operationId: deleteBuilder parameters: - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. name: gracePeriodSeconds in: query schema: type: integer uniqueItems: true - description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both.' name: orphanDependents in: query schema: type: boolean uniqueItems: true - description: Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. name: propagationPolicy in: query schema: type: string uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions' summary: Delete builder x-summary-source: derived patch: description: patch the specified namespace scoped Builder tags: - kpack operationId: patchBuilder responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' description: The JSON schema of the Resource to patch. required: true summary: Patch builder x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/builders/{name}/status: parameters: - description: The custom resource's namespace name: namespace in: path required: true schema: type: string - description: the custom object's name name: name in: path required: true schema: type: string get: description: read status of the specified namespace scoped Builder tags: - kpack operationId: getBuilderStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' '401': description: Unauthorized summary: Get builder status x-summary-source: derived put: description: replace status of the specified namespace scoped Builder tags: - kpack operationId: replaceBuilderStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' required: true summary: Replace builder status x-summary-source: derived patch: description: partially update status of the specified namespace scoped Builder tags: - kpack operationId: patchBuilderStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' required: true summary: Patch builder status x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/builds: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true - description: The custom resource's namespace name: namespace in: path required: true schema: type: string get: description: list or watch namespace scoped builds tags: - kpack operationId: listNamespacedBuilds parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.BuildList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.BuildList' '401': description: Unauthorized summary: List namespaced builds x-summary-source: derived post: description: Creates a namespace scoped Build tags: - kpack operationId: createBuild responses: '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' '401': description: Unauthorized requestBody: content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' description: The JSON schema of the Resource to create. required: true summary: Create build x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/builds/{name}: parameters: - description: The custom resource's namespace name: namespace in: path required: true schema: type: string - description: the custom object's name name: name in: path required: true schema: type: string get: description: Returns a namespace scoped custom object tags: - kpack operationId: getBuild responses: '200': description: A single Resource content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' '401': description: Unauthorized summary: Get build x-summary-source: derived put: description: replace the specified namespace scoped custom object tags: - kpack operationId: replaceBuild responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' description: The JSON schema of the Resource to replace. required: true summary: Replace build x-summary-source: derived delete: description: Deletes the specified namespace scoped Build tags: - kpack operationId: deleteBuild parameters: - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. name: gracePeriodSeconds in: query schema: type: integer uniqueItems: true - description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both.' name: orphanDependents in: query schema: type: boolean uniqueItems: true - description: Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. name: propagationPolicy in: query schema: type: string uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions' summary: Delete build x-summary-source: derived patch: description: patch the specified namespace scoped Build tags: - kpack operationId: patchBuild responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' description: The JSON schema of the Resource to patch. required: true summary: Patch build x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/builds/{name}/status: parameters: - description: The custom resource's namespace name: namespace in: path required: true schema: type: string - description: the custom object's name name: name in: path required: true schema: type: string get: description: read status of the specified namespace scoped Build tags: - kpack operationId: getBuildStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' '401': description: Unauthorized summary: Get build status x-summary-source: derived put: description: replace status of the specified namespace scoped Build tags: - kpack operationId: replaceBuildStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' required: true summary: Replace build status x-summary-source: derived patch: description: partially update status of the specified namespace scoped Build tags: - kpack operationId: patchBuildStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Build' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' required: true summary: Patch build status x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/images: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true - description: The custom resource's namespace name: namespace in: path required: true schema: type: string get: description: list or watch namespace scoped images tags: - kpack operationId: listNamespacedImages parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ImageList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.ImageList' '401': description: Unauthorized summary: List namespaced images x-summary-source: derived post: description: Creates a namespace scoped Image tags: - kpack operationId: createImage responses: '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' '401': description: Unauthorized requestBody: content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' description: The JSON schema of the Resource to create. required: true summary: Create image x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/images/{name}: parameters: - description: The custom resource's namespace name: namespace in: path required: true schema: type: string - description: the custom object's name name: name in: path required: true schema: type: string get: description: Returns a namespace scoped custom object tags: - kpack operationId: getImage responses: '200': description: A single Resource content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' '401': description: Unauthorized summary: Get image x-summary-source: derived put: description: replace the specified namespace scoped custom object tags: - kpack operationId: replaceImage responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' description: The JSON schema of the Resource to replace. required: true summary: Replace image x-summary-source: derived delete: description: Deletes the specified namespace scoped Image tags: - kpack operationId: deleteImage parameters: - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. name: gracePeriodSeconds in: query schema: type: integer uniqueItems: true - description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both.' name: orphanDependents in: query schema: type: boolean uniqueItems: true - description: Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. name: propagationPolicy in: query schema: type: string uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions' summary: Delete image x-summary-source: derived patch: description: patch the specified namespace scoped Image tags: - kpack operationId: patchImage responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' description: The JSON schema of the Resource to patch. required: true summary: Patch image x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/images/{name}/status: parameters: - description: The custom resource's namespace name: namespace in: path required: true schema: type: string - description: the custom object's name name: name in: path required: true schema: type: string get: description: read status of the specified namespace scoped Image tags: - kpack operationId: getImageStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' '401': description: Unauthorized summary: Get image status x-summary-source: derived put: description: replace status of the specified namespace scoped Image tags: - kpack operationId: replaceImageStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' required: true summary: Replace image status x-summary-source: derived patch: description: partially update status of the specified namespace scoped Image tags: - kpack operationId: patchImageStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.Image' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' required: true summary: Patch image status x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/sourceresolvers: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true - description: The custom resource's namespace name: namespace in: path required: true schema: type: string get: description: list or watch namespace scoped sourceresolvers tags: - kpack operationId: listNamespacedSourceresolvers parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolverList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolverList' '401': description: Unauthorized summary: List namespaced sourceresolvers x-summary-source: derived post: description: Creates a namespace scoped SourceResolver tags: - kpack operationId: createSourceResolver responses: '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' '401': description: Unauthorized requestBody: content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' description: The JSON schema of the Resource to create. required: true summary: Create source resolver x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/sourceresolvers/{name}: parameters: - description: The custom resource's namespace name: namespace in: path required: true schema: type: string - description: the custom object's name name: name in: path required: true schema: type: string get: description: Returns a namespace scoped custom object tags: - kpack operationId: getSourceResolver responses: '200': description: A single Resource content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' '401': description: Unauthorized summary: Get source resolver x-summary-source: derived put: description: replace the specified namespace scoped custom object tags: - kpack operationId: replaceSourceResolver responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' description: The JSON schema of the Resource to replace. required: true summary: Replace source resolver x-summary-source: derived delete: description: Deletes the specified namespace scoped SourceResolver tags: - kpack operationId: deleteSourceResolver parameters: - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. name: gracePeriodSeconds in: query schema: type: integer uniqueItems: true - description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both.' name: orphanDependents in: query schema: type: boolean uniqueItems: true - description: Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. name: propagationPolicy in: query schema: type: string uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions' summary: Delete source resolver x-summary-source: derived patch: description: patch the specified namespace scoped SourceResolver tags: - kpack operationId: patchSourceResolver responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' description: The JSON schema of the Resource to patch. required: true summary: Patch source resolver x-summary-source: derived /apis/kpack.io/v1alpha1/namespaces/{namespace}/sourceresolvers/{name}/status: parameters: - description: The custom resource's namespace name: namespace in: path required: true schema: type: string - description: the custom object's name name: name in: path required: true schema: type: string get: description: read status of the specified namespace scoped SourceResolver tags: - kpack operationId: getSourceResolverStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' '401': description: Unauthorized summary: Get source resolver status x-summary-source: derived put: description: replace status of the specified namespace scoped SourceResolver tags: - kpack operationId: replaceSourceResolverStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' '201': description: Created content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' '401': description: Unauthorized requestBody: content: '*/*': schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' required: true summary: Replace source resolver status x-summary-source: derived patch: description: partially update status of the specified namespace scoped SourceResolver tags: - kpack operationId: patchSourceResolverStatus responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' application/yaml: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' application/vnd.kubernetes.protobuf: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' '401': description: Unauthorized requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' application/merge-patch+json: schema: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch' required: true summary: Patch source resolver status x-summary-source: derived /apis/kpack.io/v1alpha1/sourceresolvers: parameters: - description: If 'true', then the output is pretty printed. name: pretty in: query schema: type: string uniqueItems: true get: description: list or watch sourceresolvers tags: - kpack operationId: listAllSourceresolvers parameters: - description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: continue in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. name: fieldSelector in: query schema: type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. name: labelSelector in: query schema: type: string uniqueItems: true - description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the ''continue'' field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. 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.' name: limit in: query schema: type: integer uniqueItems: true - description: '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.' name: resourceVersion in: query schema: type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. name: timeoutSeconds in: query schema: type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. name: watch in: query schema: type: boolean uniqueItems: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolverList' application/json;stream=watch: schema: $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolverList' '401': description: Unauthorized summary: List all sourceresolvers x-summary-source: derived components: schemas: kpack.build.v1alpha1.Builder: type: object required: - spec - status properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.NamespacedBuilderSpec' status: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.BuilderStatus' kpack.build.v1alpha1.BuilderList: type: object required: - metadata - items properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string items: type: array items: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.Builder' kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' kpack.core.v1alpha1.ResolvedBlobSource: type: object required: - url properties: auth: type: string stripComponents: type: integer format: int64 subPath: type: string url: type: string default: '' io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta: description: ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. type: object properties: annotations: description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' type: object additionalProperties: type: string clusterName: description: The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request. type: string creationTimestamp: description: 'CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata' $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time' deletionGracePeriodSeconds: description: Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. type: integer format: int64 deletionTimestamp: description: 'DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata' $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time' finalizers: description: Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. type: array items: type: string x-kubernetes-patch-strategy: merge generateName: description: 'GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header). Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency' type: string generation: description: A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. type: integer format: int64 initializers: description: 'An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven''t explicitly asked to observe uninitialized objects. When an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user. DEPRECATED - initializers are an alpha field and will be removed in v1.15.' $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Initializers' labels: description: 'Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels' type: object additionalProperties: type: string managedFields: description: 'ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn''t need to set or understand this field. A workflow can be the user''s name, a controller''s name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object. This field is alpha and can be changed or removed without notice.' type: array items: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry' name: description: 'Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names' type: string namespace: description: 'Namespace defines the space within each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces' type: string ownerReferences: description: List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. type: array items: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference' x-kubernetes-patch-merge-key: uid x-kubernetes-patch-strategy: merge resourceVersion: description: 'An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency' type: string selfLink: description: SelfLink is a URL representing this object. Populated by the system. Read-only. type: string uid: description: 'UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids' type: string io.k8s.apimachinery.pkg.apis.meta.v1.Initializers: description: Initializers tracks the progress of initialization. type: object required: - pending properties: pending: description: Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients. type: array items: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Initializer' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge result: description: If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion. $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status' io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions: description: Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. type: object properties: resourceVersion: description: Specifies the target ResourceVersion type: string uid: description: Specifies the target UID. type: string kpack.build.v1alpha1.ClusterStackStatusImage: type: object properties: image: type: string latestImage: type: string kpack.core.v1alpha1.ResolvedSourceConfig: type: object properties: blob: $ref: '#/components/schemas/kpack.core.v1alpha1.ResolvedBlobSource' git: $ref: '#/components/schemas/kpack.core.v1alpha1.ResolvedGitSource' registry: $ref: '#/components/schemas/kpack.core.v1alpha1.ResolvedRegistrySource' kpack.build.v1alpha1.BuilderStatus: type: object properties: builderMetadata: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.BuildpackMetadata' conditions: description: Conditions the latest available observations of a resource's current state. type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.Condition' x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge latestImage: type: string observedGeneration: description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. type: integer format: int64 observedStackGeneration: type: integer format: int64 observedStoreGeneration: type: integer format: int64 order: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.OrderEntry' os: type: string stack: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.BuildStack' kpack.core.v1alpha1.ResolvedGitSource: type: object required: - url - revision - type properties: initializeSubmodules: type: boolean revision: type: string default: '' subPath: type: string tree: type: string type: type: string default: '' url: type: string default: '' kpack.build.v1alpha1.ClusterStoreSpec: type: object properties: sources: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.ImageSource' x-kubernetes-list-type: '' io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta: description: ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. type: object properties: continue: description: continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message. type: string resourceVersion: description: 'String that identifies the server''s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency' type: string selfLink: description: selfLink is a URL representing this object. Populated by the system. Read-only. type: string kpack.build.v1alpha1.ClusterStoreList: type: object required: - metadata - items properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string items: type: array items: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStore' kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' io.k8s.api.core.v1.ContainerStateTerminated: description: ContainerStateTerminated is a terminated state of a container. type: object required: - exitCode properties: containerID: description: Container's ID in the format 'docker://' type: string exitCode: description: Exit status from the last termination of the container type: integer format: int32 finishedAt: description: Time at which the container last terminated $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time' message: description: Message regarding the last termination of the container type: string reason: description: (brief) reason from the last termination of the container type: string signal: description: Signal from the last termination of the container type: integer format: int32 startedAt: description: Time at which previous execution of the container started $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time' kpack.build.v1alpha1.SourceResolver: type: object required: - spec properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolverSpec' status: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolverStatus' kpack.core.v1alpha1.BuildpackMetadata: type: object required: - id - version properties: homepage: type: string id: type: string default: '' version: type: string default: '' kpack.build.v1alpha1.BuildStatus: type: object properties: buildMetadata: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.BuildpackMetadata' conditions: description: Conditions the latest available observations of a resource's current state. type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.Condition' x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge latestImage: type: string observedGeneration: description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. type: integer format: int64 podName: type: string stack: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.BuildStack' stepStates: type: array items: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.ContainerState' x-kubernetes-list-type: '' stepsCompleted: type: array items: type: string default: '' x-kubernetes-list-type: '' io.k8s.api.core.v1.ResourceFieldSelector: description: ResourceFieldSelector represents container resources (cpu, memory) and their output format type: object required: - resource properties: containerName: description: 'Container name: required for volumes, optional for env vars' type: string divisor: description: Specifies the output format of the exposed resources, defaults to "1" $ref: '#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity' resource: description: 'Required: resource to select' type: string kpack.build.v1alpha1.SourceResolverStatus: type: object properties: conditions: description: Conditions the latest available observations of a resource's current state. type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.Condition' x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge observedGeneration: description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. type: integer format: int64 source: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.ResolvedSourceConfig' kpack.core.v1alpha1.ImageSource: type: object properties: image: type: string io.k8s.api.core.v1.SecretKeySelector: description: SecretKeySelector selects a key of a Secret. type: object required: - key properties: key: description: The key of the secret to select from. Must be a valid secret key. type: string name: description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the Secret or it's key must be defined type: boolean kpack.build.v1alpha1.ClusterStore: type: object required: - spec - status properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStoreSpec' status: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStoreStatus' io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails: description: StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined. type: object properties: causes: description: The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes. type: array items: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause' group: description: The group attribute of the resource associated with the status StatusReason. type: string kind: description: 'The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds' type: string name: description: The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described). type: string retryAfterSeconds: description: If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action. type: integer format: int32 uid: description: 'UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids' type: string kpack.core.v1alpha1.Git: type: object required: - url - revision properties: initializeSubmodules: type: boolean revision: type: string default: '' url: type: string default: '' kpack.build.v1alpha1.ClusterStackSpec: type: object properties: buildImage: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStackSpecImage' id: type: string runImage: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStackSpecImage' kpack.core.v1alpha1.SourceConfig: type: object properties: blob: $ref: '#/components/schemas/kpack.core.v1alpha1.Blob' git: $ref: '#/components/schemas/kpack.core.v1alpha1.Git' registry: $ref: '#/components/schemas/kpack.core.v1alpha1.Registry' subPath: type: string io.k8s.api.core.v1.ObjectReference: description: ObjectReference contains enough information to let you inspect or modify the referred object. type: object properties: apiVersion: description: API version of the referent. type: string fieldPath: description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.' type: string kind: description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds' type: string name: description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string namespace: description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' type: string resourceVersion: description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency' type: string uid: description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' type: string io.k8s.api.core.v1.ConfigMapKeySelector: description: Selects a key from a ConfigMap. type: object required: - key properties: key: description: The key to select. type: string name: description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the ConfigMap or it's key must be defined type: boolean kpack.build.v1alpha1.LastBuild: type: object properties: image: type: string stackId: type: string io.k8s.api.core.v1.ContainerStateWaiting: description: ContainerStateWaiting is a waiting state of a container. type: object properties: message: description: Message regarding why the container is not yet running. type: string reason: description: (brief) reason the container is not yet running. type: string kpack.build.v1alpha1.ClusterStoreStatus: type: object properties: buildpacks: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.BuildpackStatus' x-kubernetes-list-type: '' conditions: description: Conditions the latest available observations of a resource's current state. type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.Condition' x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge observedGeneration: description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. type: integer format: int64 io.k8s.apimachinery.pkg.apis.meta.v1.Fields: description: 'Fields stores a set of fields in a data structure like a Trie. To understand how this is used, see: https://github.com/kubernetes-sigs/structured-merge-diff' type: object io.k8s.api.core.v1.EnvVar: description: EnvVar represents an environment variable present in a Container. type: object required: - name properties: name: description: Name of the environment variable. Must be a C_IDENTIFIER. type: string value: description: 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' type: string valueFrom: description: Source for the environment variable's value. Cannot be used if value is not empty. $ref: '#/components/schemas/io.k8s.api.core.v1.EnvVarSource' kpack.core.v1alpha1.BuildStack: type: object properties: id: type: string runImage: type: string kpack.core.v1alpha1.NotaryConfig: type: object properties: v1: $ref: '#/components/schemas/kpack.core.v1alpha1.NotaryV1Config' kpack.build.v1alpha1.Image: type: object required: - spec properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ImageSpec' status: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ImageStatus' io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry: description: ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to. type: object properties: apiVersion: description: APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted. type: string fields: description: Fields identifies a set of fields. $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Fields' manager: description: Manager is an identifier of the workflow managing these fields. type: string operation: description: Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'. type: string time: description: Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply' $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time' io.k8s.apimachinery.pkg.apis.meta.v1.Time: description: Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. type: string format: date-time kpack.build.v1alpha1.ClusterStackSpecImage: type: object properties: image: type: string kpack.core.v1alpha1.OrderEntry: type: object properties: group: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.BuildpackRef' x-kubernetes-list-type: '' io.k8s.apimachinery.pkg.apis.meta.v1.Initializer: description: Initializer is information about an initializer that has not yet completed. type: object required: - name properties: name: description: name of the process that is responsible for initializing this object. type: string kpack.core.v1alpha1.Condition: description: 'Conditions defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' type: object required: - type - status properties: lastTransitionTime: description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). type: string message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string severity: description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. type: string status: description: Status of the condition, one of True, False, Unknown. type: string default: '' type: description: Type of condition. type: string default: '' kpack.core.v1alpha1.NotaryV1Config: type: object required: - url - secretRef properties: secretRef: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.NotarySecretRef' url: type: string default: '' kpack.core.v1alpha1.CNBBinding: type: object properties: metadataRef: $ref: '#/components/schemas/io.k8s.api.core.v1.LocalObjectReference' name: type: string secretRef: $ref: '#/components/schemas/io.k8s.api.core.v1.LocalObjectReference' kpack.build.v1alpha1.ImageList: type: object required: - metadata - items properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string items: type: array items: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.Image' kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' kpack.core.v1alpha1.BuildpackStatus: type: object required: - id properties: api: type: string buildpackage: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.BuildpackageInfo' diffId: type: string digest: type: string homepage: type: string id: type: string default: '' order: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.OrderEntry' x-kubernetes-list-type: '' size: type: integer format: int64 stacks: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.BuildpackStack' x-kubernetes-list-type: '' storeImage: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.ImageSource' version: type: string kpack.build.v1alpha1.ImageBuild: type: object properties: bindings: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.CNBBinding' x-kubernetes-list-type: '' env: type: array items: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.EnvVar' x-kubernetes-list-type: '' resources: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.ResourceRequirements' io.k8s.api.core.v1.ContainerStateRunning: description: ContainerStateRunning is a running state of a container. type: object properties: startedAt: description: Time at which the container was last (re-)started $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time' kpack.build.v1alpha1.BuildSpec: type: object required: - source properties: bindings: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.CNBBinding' x-kubernetes-list-type: '' builder: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.BuildBuilderSpec' cacheName: type: string env: type: array items: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.EnvVar' x-kubernetes-list-type: '' lastBuild: $ref: '#/components/schemas/kpack.build.v1alpha1.LastBuild' notary: $ref: '#/components/schemas/kpack.core.v1alpha1.NotaryConfig' resources: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.ResourceRequirements' serviceAccount: type: string source: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.SourceConfig' tags: type: array items: type: string default: '' x-kubernetes-list-type: '' kpack.build.v1alpha1.ClusterBuilderList: type: object required: - metadata - items properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string items: type: array items: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilder' kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' kpack.build.v1alpha1.SourceResolverList: type: object required: - metadata - items properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string items: type: array items: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.SourceResolver' kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' kpack.core.v1alpha1.BuildpackageInfo: type: object properties: homepage: type: string id: type: string version: type: string kpack.core.v1alpha1.Registry: type: object required: - image properties: image: type: string default: '' imagePullSecrets: type: array items: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.LocalObjectReference' x-kubernetes-list-type: '' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge kpack.build.v1alpha1.ImageSpec: type: object required: - tag - source properties: build: $ref: '#/components/schemas/kpack.build.v1alpha1.ImageBuild' builder: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.ObjectReference' cacheSize: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity' failedBuildHistoryLimit: type: integer format: int64 imageTaggingStrategy: type: string notary: $ref: '#/components/schemas/kpack.core.v1alpha1.NotaryConfig' serviceAccount: type: string source: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.SourceConfig' successBuildHistoryLimit: type: integer format: int64 tag: type: string default: '' io.k8s.apimachinery.pkg.apis.meta.v1.Status: description: Status is a return value for calls that don't return other objects. type: object properties: apiVersion: description: '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' type: string code: description: Suggested HTTP return code for this status, 0 if not set. type: integer format: int32 details: description: Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type. $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails' kind: description: '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' type: string message: description: A human-readable description of the status of this operation. type: string metadata: description: 'Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds' $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' reason: description: A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. type: string status: description: 'Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status' type: string x-kubernetes-group-version-kind: - group: '' kind: Status version: v1 io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference: description: OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field. type: object required: - apiVersion - kind - name - uid properties: apiVersion: description: API version of the referent. type: string blockOwnerDeletion: description: If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. type: boolean controller: description: If true, this reference points to the managing controller. type: boolean kind: description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds' type: string name: description: 'Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names' type: string uid: description: 'UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids' type: string kpack.build.v1alpha1.ClusterBuilderSpec: type: object properties: order: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.OrderEntry' x-kubernetes-list-type: '' serviceAccountRef: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.ObjectReference' stack: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.ObjectReference' store: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.ObjectReference' tag: type: string io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause: description: StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered. type: object properties: field: description: "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n \"name\" - the field \"name\" on the current resource\n \"items[0].name\" - the field \"name\" on the first array entry in \"items\"" type: string message: description: A human-readable description of the cause of the error. This field may be presented as-is to a reader. type: string reason: description: A machine-readable description of the cause of the error. If this value is empty there is no information available. type: string kpack.build.v1alpha1.NamespacedBuilderSpec: type: object properties: order: type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.OrderEntry' x-kubernetes-list-type: '' serviceAccount: type: string stack: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.ObjectReference' store: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.ObjectReference' tag: type: string kpack.core.v1alpha1.BuildpackRef: type: object required: - id properties: id: type: string default: '' optional: type: boolean version: type: string io.k8s.api.core.v1.EnvVarSource: description: EnvVarSource represents a source for the value of an EnvVar. type: object properties: configMapKeyRef: description: Selects a key of a ConfigMap. $ref: '#/components/schemas/io.k8s.api.core.v1.ConfigMapKeySelector' fieldRef: description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.' $ref: '#/components/schemas/io.k8s.api.core.v1.ObjectFieldSelector' resourceFieldRef: description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' $ref: '#/components/schemas/io.k8s.api.core.v1.ResourceFieldSelector' secretKeyRef: description: Selects a key of a secret in the pod's namespace $ref: '#/components/schemas/io.k8s.api.core.v1.SecretKeySelector' io.k8s.apimachinery.pkg.apis.meta.v1.Patch: description: Patch is provided to give a concrete name and type to the Kubernetes PATCH request body. type: object kpack.core.v1alpha1.BuildBuilderSpec: type: object properties: image: type: string imagePullSecrets: type: array items: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.LocalObjectReference' x-kubernetes-list-type: '' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge ref: description: Ref reference to an existing Builder/ClusterBuilder $ref: '#/components/schemas/io.k8s.api.core.v1.ObjectReference' kpack.build.v1alpha1.ClusterStack: type: object required: - spec - status properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStackSpec' status: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStackStatus' io.k8s.api.core.v1.LocalObjectReference: description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. type: object properties: name: description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string io.k8s.api.core.v1.ObjectFieldSelector: description: ObjectFieldSelector selects an APIVersioned field of an object. type: object required: - fieldPath properties: apiVersion: description: Version of the schema the FieldPath is written in terms of, defaults to "v1". type: string fieldPath: description: Path of the field to select in the specified API version. type: string kpack.core.v1alpha1.ResolvedRegistrySource: type: object required: - image properties: image: type: string default: '' imagePullSecrets: type: array items: default: {} $ref: '#/components/schemas/io.k8s.api.core.v1.LocalObjectReference' x-kubernetes-list-type: '' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge subPath: type: string kpack.build.v1alpha1.ClusterBuilder: type: object required: - spec - status properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterBuilderSpec' status: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.BuilderStatus' kpack.core.v1alpha1.BuildpackStack: type: object required: - id properties: id: type: string default: '' mixins: type: array items: type: string default: '' x-kubernetes-list-type: '' kpack.build.v1alpha1.ClusterStackStatus: type: object properties: buildImage: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStackStatusImage' conditions: description: Conditions the latest available observations of a resource's current state. type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.Condition' x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge groupId: type: integer format: int32 id: type: string mixins: type: array items: type: string default: '' x-kubernetes-list-type: '' observedGeneration: description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. type: integer format: int64 runImage: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStackStatusImage' userId: type: integer format: int32 kpack.core.v1alpha1.Blob: type: object required: - url properties: auth: type: string stripComponents: type: integer format: int64 url: type: string default: '' kpack.build.v1alpha1.Build: type: object required: - spec properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.BuildSpec' status: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.BuildStatus' kpack.core.v1alpha1.NotarySecretRef: type: object required: - name properties: name: type: string default: '' io.k8s.apimachinery.pkg.api.resource.Quantity: description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and Int64() accessors.\n\nThe serialization format is:\n\n ::= \n (Note that may be empty, from the \"\" case in .)\n ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= \"+\" | \"-\" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n ::= \"e\" | \"E\" \n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n a. No precision is lost\n b. No fractional digits will be emitted\n c. The exponent (or suffix) is as large as possible.\nThe sign will be omitted unless the number is negative.\n\nExamples:\n 1.5 will be serialized as \"1500m\"\n 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation." type: string kpack.build.v1alpha1.SourceResolverSpec: type: object required: - source properties: serviceAccount: type: string source: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.SourceConfig' io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions: description: DeleteOptions may be provided when deleting an API object. type: object properties: apiVersion: description: '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' type: string dryRun: description: 'When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed' type: array items: type: string gracePeriodSeconds: description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. type: integer format: int64 kind: description: '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' type: string orphanDependents: description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both.' type: boolean preconditions: description: Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions' propagationPolicy: description: 'Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: ''Orphan'' - orphan the dependents; ''Background'' - allow the garbage collector to delete the dependents in the background; ''Foreground'' - a cascading policy that deletes all dependents in the foreground.' type: string x-kubernetes-group-version-kind: - group: '' kind: DeleteOptions version: v1 - group: admission.k8s.io kind: DeleteOptions version: v1beta1 - group: admissionregistration.k8s.io kind: DeleteOptions version: v1beta1 - group: apiextensions.k8s.io kind: DeleteOptions version: v1beta1 - group: apiregistration.k8s.io kind: DeleteOptions version: v1 - group: apiregistration.k8s.io kind: DeleteOptions version: v1beta1 - group: apps kind: DeleteOptions version: v1 - group: apps kind: DeleteOptions version: v1beta1 - group: apps kind: DeleteOptions version: v1beta2 - group: auditregistration.k8s.io kind: DeleteOptions version: v1alpha1 - group: authentication.k8s.io kind: DeleteOptions version: v1 - group: authentication.k8s.io kind: DeleteOptions version: v1beta1 - group: authorization.k8s.io kind: DeleteOptions version: v1 - group: authorization.k8s.io kind: DeleteOptions version: v1beta1 - group: autoscaling kind: DeleteOptions version: v1 - group: autoscaling kind: DeleteOptions version: v2beta1 - group: autoscaling kind: DeleteOptions version: v2beta2 - group: batch kind: DeleteOptions version: v1 - group: batch kind: DeleteOptions version: v1beta1 - group: batch kind: DeleteOptions version: v2alpha1 - group: certificates.k8s.io kind: DeleteOptions version: v1beta1 - group: coordination.k8s.io kind: DeleteOptions version: v1 - group: coordination.k8s.io kind: DeleteOptions version: v1beta1 - group: events.k8s.io kind: DeleteOptions version: v1beta1 - group: extensions kind: DeleteOptions version: v1beta1 - group: imagepolicy.k8s.io kind: DeleteOptions version: v1alpha1 - group: networking.k8s.io kind: DeleteOptions version: v1 - group: networking.k8s.io kind: DeleteOptions version: v1beta1 - group: node.k8s.io kind: DeleteOptions version: v1alpha1 - group: node.k8s.io kind: DeleteOptions version: v1beta1 - group: policy kind: DeleteOptions version: v1beta1 - group: rbac.authorization.k8s.io kind: DeleteOptions version: v1 - group: rbac.authorization.k8s.io kind: DeleteOptions version: v1alpha1 - group: rbac.authorization.k8s.io kind: DeleteOptions version: v1beta1 - group: scheduling.k8s.io kind: DeleteOptions version: v1 - group: scheduling.k8s.io kind: DeleteOptions version: v1alpha1 - group: scheduling.k8s.io kind: DeleteOptions version: v1beta1 - group: settings.k8s.io kind: DeleteOptions version: v1alpha1 - group: storage.k8s.io kind: DeleteOptions version: v1 - group: storage.k8s.io kind: DeleteOptions version: v1alpha1 - group: storage.k8s.io kind: DeleteOptions version: v1beta1 kpack.build.v1alpha1.BuildList: type: object required: - metadata - items properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string items: type: array items: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.Build' kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' kpack.build.v1alpha1.ClusterStackList: type: object required: - metadata - items properties: apiVersion: description: '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/sig-architecture/api-conventions.md#resources' type: string items: type: array items: default: {} $ref: '#/components/schemas/kpack.build.v1alpha1.ClusterStack' kind: description: '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/sig-architecture/api-conventions.md#types-kinds' type: string metadata: default: {} $ref: '#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' io.k8s.api.core.v1.ContainerState: description: ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting. type: object properties: running: description: Details about a running container $ref: '#/components/schemas/io.k8s.api.core.v1.ContainerStateRunning' terminated: description: Details about a terminated container $ref: '#/components/schemas/io.k8s.api.core.v1.ContainerStateTerminated' waiting: description: Details about a waiting container $ref: '#/components/schemas/io.k8s.api.core.v1.ContainerStateWaiting' io.k8s.api.core.v1.ResourceRequirements: description: ResourceRequirements describes the compute resource requirements. type: object properties: limits: description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' type: object additionalProperties: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity' requests: description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' type: object additionalProperties: $ref: '#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity' kpack.build.v1alpha1.ImageStatus: type: object properties: buildCacheName: type: string buildCounter: type: integer format: int64 conditions: description: Conditions the latest available observations of a resource's current state. type: array items: default: {} $ref: '#/components/schemas/kpack.core.v1alpha1.Condition' x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge latestBuildImageGeneration: type: integer format: int64 latestBuildReason: type: string latestBuildRef: type: string latestImage: type: string latestStack: type: string observedGeneration: description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. type: integer format: int64