mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	Merge pull request #26581 from caesarxuchao/continue-25746
Automatic merge from submit-queue fix kubectl patch example Based on https://github.com/kubernetes/kubernetes/pull/25746, fix the kubectl example. cc @tobstarr
This commit is contained in:
		@@ -167,7 +167,7 @@ kubectl patch \-f node.json \-p '{"spec":{"unschedulable":true}}'
 | 
			
		||||
kubectl patch pod valid\-pod \-p '{"spec":{"containers":[{"name":"kubernetes\-serve\-hostname","image":"new image"}]}}'
 | 
			
		||||
 | 
			
		||||
# Update a container's image using a json patch with positional arrays
 | 
			
		||||
kubectl patch pod valid\-pod \-type='json' \-p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'
 | 
			
		||||
kubectl patch pod valid\-pod \-\-type='json' \-p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'
 | 
			
		||||
 | 
			
		||||
.fi
 | 
			
		||||
.RE
 | 
			
		||||
 
 | 
			
		||||
@@ -63,7 +63,7 @@ kubectl patch -f node.json -p '{"spec":{"unschedulable":true}}'
 | 
			
		||||
kubectl patch pod valid-pod -p '{"spec":{"containers":[{"name":"kubernetes-serve-hostname","image":"new image"}]}}'
 | 
			
		||||
 | 
			
		||||
# Update a container's image using a json patch with positional arrays
 | 
			
		||||
kubectl patch pod valid-pod -type='json' -p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'
 | 
			
		||||
kubectl patch pod valid-pod --type='json' -p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### Options
 | 
			
		||||
@@ -110,7 +110,7 @@ kubectl patch pod valid-pod -type='json' -p='[{"op": "replace", "path": "/spec/c
 | 
			
		||||
 | 
			
		||||
* [kubectl](kubectl.md)	 - kubectl controls the Kubernetes cluster manager
 | 
			
		||||
 | 
			
		||||
###### Auto generated by spf13/cobra on 30-Mar-2016
 | 
			
		||||
###### Auto generated by spf13/cobra on 31-May-2016
 | 
			
		||||
 | 
			
		||||
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
 | 
			
		||||
[]()
 | 
			
		||||
 
 | 
			
		||||
@@ -107,6 +107,6 @@ example: |2-
 | 
			
		||||
  kubectl patch pod valid-pod -p '{"spec":{"containers":[{"name":"kubernetes-serve-hostname","image":"new image"}]}}'
 | 
			
		||||
 | 
			
		||||
  # Update a container's image using a json patch with positional arrays
 | 
			
		||||
  kubectl patch pod valid-pod -type='json' -p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'
 | 
			
		||||
  kubectl patch pod valid-pod --type='json' -p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'
 | 
			
		||||
see_also:
 | 
			
		||||
- kubectl
 | 
			
		||||
 
 | 
			
		||||
@@ -57,7 +57,7 @@ kubectl patch -f node.json -p '{"spec":{"unschedulable":true}}'
 | 
			
		||||
kubectl patch pod valid-pod -p '{"spec":{"containers":[{"name":"kubernetes-serve-hostname","image":"new image"}]}}'
 | 
			
		||||
 | 
			
		||||
# Update a container's image using a json patch with positional arrays
 | 
			
		||||
kubectl patch pod valid-pod -type='json' -p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'`
 | 
			
		||||
kubectl patch pod valid-pod --type='json' -p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'`
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func NewCmdPatch(f *cmdutil.Factory, out io.Writer) *cobra.Command {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user