mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
Merge pull request #17381 from caesarxuchao/add-blob
Auto commit by PR queue bot
This commit is contained in:
commit
d25cffef55
@ -48,7 +48,7 @@ fi
|
|||||||
echo "+++ Versioning documentation and examples"
|
echo "+++ Versioning documentation and examples"
|
||||||
|
|
||||||
# Update the docs to match this version.
|
# Update the docs to match this version.
|
||||||
HTML_PREVIEW_PREFIX="https://htmlpreview.github.io/\?https://github.com/kubernetes/kubernetes"
|
HTML_PREVIEW_PREFIX="https://htmlpreview.github.io/\?https://github.com/kubernetes/kubernetes/blob"
|
||||||
# Update the include directory in definitions.md and operations.md.
|
# Update the include directory in definitions.md and operations.md.
|
||||||
DIRECTORY_KEY_WORDS="<REPLACE-WITH-RELEASE-VERSION>"
|
DIRECTORY_KEY_WORDS="<REPLACE-WITH-RELEASE-VERSION>"
|
||||||
|
|
||||||
|
@ -257,7 +257,7 @@ on each kubelet where you want to reserve resources.
|
|||||||
|
|
||||||
Node is a top-level resource in the kubernetes REST API. More details about the
|
Node is a top-level resource in the kubernetes REST API. More details about the
|
||||||
API object can be found at: [Node API
|
API object can be found at: [Node API
|
||||||
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html#_v1_node).
|
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html#_v1_node).
|
||||||
|
|
||||||
|
|
||||||
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
||||||
|
@ -20,7 +20,7 @@ JSON and YAML formats are accepted.
|
|||||||
|
|
||||||
.PP
|
.PP
|
||||||
Please refer to the models in
|
Please refer to the models in
|
||||||
\[la]https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html\[ra] to find if a field is mutable.
|
\[la]https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html\[ra] to find if a field is mutable.
|
||||||
|
|
||||||
|
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
|
@ -22,7 +22,7 @@ $ kubectl get TYPE NAME \-o yaml
|
|||||||
|
|
||||||
.PP
|
.PP
|
||||||
Please refer to the models in
|
Please refer to the models in
|
||||||
\[la]https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html\[ra] to find if a field is mutable.
|
\[la]https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html\[ra] to find if a field is mutable.
|
||||||
|
|
||||||
|
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
|
@ -109,7 +109,7 @@ pods/hello-world
|
|||||||
|
|
||||||
`kubectl create --validate` currently warns about problems it detects, but creates the resource anyway, unless a required field is absent or a field value is invalid. Unknown API fields are ignored, so be careful. This pod was created, but with no `command`, which is an optional field, since the image may specify an `Entrypoint`.
|
`kubectl create --validate` currently warns about problems it detects, but creates the resource anyway, unless a required field is absent or a field value is invalid. Unknown API fields are ignored, so be careful. This pod was created, but with no `command`, which is an optional field, since the image may specify an `Entrypoint`.
|
||||||
View the [Pod API
|
View the [Pod API
|
||||||
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html#_v1_pod)
|
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html#_v1_pod)
|
||||||
to see the list of valid fields.
|
to see the list of valid fields.
|
||||||
|
|
||||||
## Environment variables and variable expansion
|
## Environment variables and variable expansion
|
||||||
|
@ -128,7 +128,7 @@ spec:
|
|||||||
app: nginx
|
app: nginx
|
||||||
```
|
```
|
||||||
|
|
||||||
This specification will create a Service which targets TCP port 80 on any Pod with the `app=nginx` label, and expose it on an abstracted Service port (`targetPort`: is the port the container accepts traffic on, `port`: is the abstracted Service port, which can be any port other pods use to access the Service). View [service API object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html#_v1_service) to see the list of supported fields in service definition.
|
This specification will create a Service which targets TCP port 80 on any Pod with the `app=nginx` label, and expose it on an abstracted Service port (`targetPort`: is the port the container accepts traffic on, `port`: is the abstracted Service port, which can be any port other pods use to access the Service). View [service API object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html#_v1_service) to see the list of supported fields in service definition.
|
||||||
Check your Service:
|
Check your Service:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
|
@ -76,7 +76,7 @@ spec:
|
|||||||
|
|
||||||
Some differences compared to specifying just a pod are that the `kind` is `ReplicationController`, the number of `replicas` desired is specified, and the pod specification is under the `template` field. The names of the pods don’t need to be specified explicitly because they are generated from the name of the replication controller.
|
Some differences compared to specifying just a pod are that the `kind` is `ReplicationController`, the number of `replicas` desired is specified, and the pod specification is under the `template` field. The names of the pods don’t need to be specified explicitly because they are generated from the name of the replication controller.
|
||||||
View the [replication controller API
|
View the [replication controller API
|
||||||
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html#_v1_replicationcontroller)
|
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html#_v1_replicationcontroller)
|
||||||
to view the list of supported fields.
|
to view the list of supported fields.
|
||||||
|
|
||||||
This replication controller can be created using `create`, just as with pods:
|
This replication controller can be created using `create`, just as with pods:
|
||||||
|
@ -42,7 +42,7 @@ Update field(s) of a resource using strategic merge patch
|
|||||||
|
|
||||||
JSON and YAML formats are accepted.
|
JSON and YAML formats are accepted.
|
||||||
|
|
||||||
Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.
|
Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.
|
||||||
|
|
||||||
```
|
```
|
||||||
kubectl patch (-f FILENAME | TYPE NAME) -p PATCH
|
kubectl patch (-f FILENAME | TYPE NAME) -p PATCH
|
||||||
|
@ -44,7 +44,7 @@ JSON and YAML formats are accepted. If replacing an existing resource, the
|
|||||||
complete resource spec must be provided. This can be obtained by
|
complete resource spec must be provided. This can be obtained by
|
||||||
$ kubectl get TYPE NAME -o yaml
|
$ kubectl get TYPE NAME -o yaml
|
||||||
|
|
||||||
Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.
|
Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.
|
||||||
|
|
||||||
```
|
```
|
||||||
kubectl replace -f FILENAME
|
kubectl replace -f FILENAME
|
||||||
|
@ -164,7 +164,7 @@ spec.containers[0].securityContext.privileged: forbidden '<*>(0xc20b222db0)true'
|
|||||||
|
|
||||||
Pod is a top-level resource in the kubernetes REST API. More details about the
|
Pod is a top-level resource in the kubernetes REST API. More details about the
|
||||||
API object can be found at: [Pod API
|
API object can be found at: [Pod API
|
||||||
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html#_v1_pod).
|
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html#_v1_pod).
|
||||||
|
|
||||||
|
|
||||||
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
||||||
|
@ -124,7 +124,7 @@ For instance, a service might target all pods with `tier in (frontend), environm
|
|||||||
|
|
||||||
Replication controller is a top-level resource in the kubernetes REST API. More details about the
|
Replication controller is a top-level resource in the kubernetes REST API. More details about the
|
||||||
API object can be found at: [ReplicationController API
|
API object can be found at: [ReplicationController API
|
||||||
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html#_v1_replicationcontroller).
|
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html#_v1_replicationcontroller).
|
||||||
|
|
||||||
|
|
||||||
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
||||||
|
@ -636,7 +636,7 @@ through a load-balancer, though in those cases the client IP does get altered.
|
|||||||
|
|
||||||
Service is a top-level resource in the kubernetes REST API. More details about the
|
Service is a top-level resource in the kubernetes REST API. More details about the
|
||||||
API object can be found at: [Service API
|
API object can be found at: [Service API
|
||||||
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html#_v1_service).
|
object](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html#_v1_service).
|
||||||
|
|
||||||
|
|
||||||
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
||||||
|
@ -40,7 +40,7 @@ const (
|
|||||||
|
|
||||||
JSON and YAML formats are accepted.
|
JSON and YAML formats are accepted.
|
||||||
|
|
||||||
Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.`
|
Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.`
|
||||||
patch_example = `
|
patch_example = `
|
||||||
# Partially update a node using strategic merge patch
|
# Partially update a node using strategic merge patch
|
||||||
kubectl patch node k8s-node-1 -p '{"spec":{"unschedulable":true}}'
|
kubectl patch node k8s-node-1 -p '{"spec":{"unschedulable":true}}'
|
||||||
|
@ -44,7 +44,7 @@ JSON and YAML formats are accepted. If replacing an existing resource, the
|
|||||||
complete resource spec must be provided. This can be obtained by
|
complete resource spec must be provided. This can be obtained by
|
||||||
$ kubectl get TYPE NAME -o yaml
|
$ kubectl get TYPE NAME -o yaml
|
||||||
|
|
||||||
Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.`
|
Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.`
|
||||||
replace_example = `# Replace a pod using the data in pod.json.
|
replace_example = `# Replace a pod using the data in pod.json.
|
||||||
$ kubectl replace -f ./pod.json
|
$ kubectl replace -f ./pod.json
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user