17 KiB
Secret v1
| Group | Version | Kind |
|---|---|---|
| Core | v1 | Secret |
Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.
| Field | Description |
|---|---|
| apiVersion string |
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources |
| data object |
Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN or leading dot followed by valid DNS_SUBDOMAIN. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4 |
| kind string |
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds |
| metadata ObjectMeta |
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata |
| stringData object |
stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. |
| type string |
Used to facilitate programmatic handling of secret data. |
SecretList v1
| Field | Description |
|---|---|
| apiVersion string |
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources |
| items Secret array |
Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets |
| kind string |
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds |
| metadata ListMeta |
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds |
Write Operations
See supported operations below...
Create
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
create a Secret
HTTP Request
POST /api/v1/namespaces/{namespace}/secrets
Path Parameters
| Parameter | Description |
|---|---|
| namespace | object name and auth scope, such as for teams and projects |
Query Parameters
| Parameter | Description |
|---|---|
| pretty | If 'true', then the output is pretty printed. |
Body Parameters
| Parameter | Description |
|---|---|
| body Secret |
Response
| Code | Description |
|---|---|
| 200 Secret |
OK |
Replace
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
replace the specified Secret
HTTP Request
PUT /api/v1/namespaces/{namespace}/secrets/{name}
Path Parameters
| Parameter | Description |
|---|---|
| name | name of the Secret |
| namespace | object name and auth scope, such as for teams and projects |
Query Parameters
| Parameter | Description |
|---|---|
| pretty | If 'true', then the output is pretty printed. |
Body Parameters
| Parameter | Description |
|---|---|
| body Secret |
Response
| Code | Description |
|---|---|
| 200 Secret |
OK |
Patch
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
partially update the specified Secret
HTTP Request
PATCH /api/v1/namespaces/{namespace}/secrets/{name}
Path Parameters
| Parameter | Description |
|---|---|
| name | name of the Secret |
| namespace | object name and auth scope, such as for teams and projects |
Query Parameters
| Parameter | Description |
|---|---|
| pretty | If 'true', then the output is pretty printed. |
Body Parameters
| Parameter | Description |
|---|---|
| body Patch |
Response
| Code | Description |
|---|---|
| 200 Secret |
OK |
Delete
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
delete a Secret
HTTP Request
DELETE /api/v1/namespaces/{namespace}/secrets/{name}
Path Parameters
| Parameter | Description |
|---|---|
| name | name of the Secret |
| namespace | object name and auth scope, such as for teams and projects |
Query Parameters
| Parameter | Description |
|---|---|
| pretty | If 'true', then the output is pretty printed. |
| gracePeriodSeconds | 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. |
| orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. |
Body Parameters
| Parameter | Description |
|---|---|
| body DeleteOptions |
Response
| Code | Description |
|---|---|
| 200 Status |
OK |
Delete Collection
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
delete collection of Secret
HTTP Request
DELETE /api/v1/namespaces/{namespace}/secrets
Path Parameters
| Parameter | Description |
|---|---|
| namespace | object name and auth scope, such as for teams and projects |
Query Parameters
| Parameter | Description |
|---|---|
| pretty | If 'true', then the output is pretty printed. |
| fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. |
| labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. |
| resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. |
| timeoutSeconds | Timeout for the list/watch call. |
| watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Response
| Code | Description |
|---|---|
| 200 Status |
OK |
Read Operations
See supported operations below...
Read
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
read the specified Secret
HTTP Request
GET /api/v1/namespaces/{namespace}/secrets/{name}
Path Parameters
| Parameter | Description |
|---|---|
| name | name of the Secret |
| namespace | object name and auth scope, such as for teams and projects |
Query Parameters
| Parameter | Description |
|---|---|
| pretty | If 'true', then the output is pretty printed. |
| exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' |
| export | Should this value be exported. Export strips fields that a user can not specify. |
Response
| Code | Description |
|---|---|
| 200 Secret |
OK |
List
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
list or watch objects of kind Secret
HTTP Request
GET /api/v1/namespaces/{namespace}/secrets
Path Parameters
| Parameter | Description |
|---|---|
| namespace | object name and auth scope, such as for teams and projects |
Query Parameters
| Parameter | Description |
|---|---|
| pretty | If 'true', then the output is pretty printed. |
| fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. |
| labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. |
| resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. |
| timeoutSeconds | Timeout for the list/watch call. |
| watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Response
| Code | Description |
|---|---|
| 200 SecretList |
OK |
List All Namespaces
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
list or watch objects of kind Secret
HTTP Request
GET /api/v1/secrets
Query Parameters
| Parameter | Description |
|---|---|
| fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. |
| labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. |
| pretty | If 'true', then the output is pretty printed. |
| resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. |
| timeoutSeconds | Timeout for the list/watch call. |
| watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Response
| Code | Description |
|---|---|
| 200 SecretList |
OK |
Watch
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
watch changes to an object of kind Secret
HTTP Request
GET /api/v1/watch/namespaces/{namespace}/secrets/{name}
Path Parameters
| Parameter | Description |
|---|---|
| name | name of the Secret |
| namespace | object name and auth scope, such as for teams and projects |
Query Parameters
| Parameter | Description |
|---|---|
| fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. |
| labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. |
| pretty | If 'true', then the output is pretty printed. |
| resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. |
| timeoutSeconds | Timeout for the list/watch call. |
| watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Response
| Code | Description |
|---|---|
| 200 Event |
OK |
Watch List
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
watch individual changes to a list of Secret
HTTP Request
GET /api/v1/watch/namespaces/{namespace}/secrets
Path Parameters
| Parameter | Description |
|---|---|
| namespace | object name and auth scope, such as for teams and projects |
Query Parameters
| Parameter | Description |
|---|---|
| fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. |
| labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. |
| pretty | If 'true', then the output is pretty printed. |
| resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. |
| timeoutSeconds | Timeout for the list/watch call. |
| watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Response
| Code | Description |
|---|---|
| 200 Event |
OK |
Watch List All Namespaces
bdocs-tab:kubectl
kubectlCommand
Coming Soon
bdocs-tab:curl
curlCommand (requireskubectl proxyto be running)
Coming Soon
bdocs-tab:kubectl Output
Coming Soon
bdocs-tab:curl Response Body
Coming Soon
watch individual changes to a list of Secret
HTTP Request
GET /api/v1/watch/secrets
Query Parameters
| Parameter | Description |
|---|---|
| fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. |
| labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. |
| pretty | If 'true', then the output is pretty printed. |
| resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. |
| timeoutSeconds | Timeout for the list/watch call. |
| watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Response
| Code | Description |
|---|---|
| 200 Event |
OK |