Difference between revisions of "Kubectl rollout restart"

From wikieduonline
Jump to navigation Jump to search
Line 2: Line 2:
 
  [[kubectl rollout]] restart
 
  [[kubectl rollout]] restart
 
  [[kubectl rollout restart --help]]
 
  [[kubectl rollout restart --help]]
 +
 +
<pre>
 +
Restart a resource.
 +
 +
    Resource rollout will be restarted.
 +
 +
Examples:
 +
  # Restart a deployment
 +
  kubectl rollout restart deployment/nginx
 +
 +
  # Restart a daemon set
 +
  kubectl rollout restart daemonset/abc
 +
 +
  # Restart deployments with the app=nginx label
 +
  kubectl rollout restart deployment --selector=app=nginx
 +
 +
Options:
 +
    --allow-missing-template-keys=true:
 +
If true, ignore any errors in templates when a field or map key is missing in the template. Only applies to
 +
golang and jsonpath output formats.
 +
 +
    --field-manager='kubectl-rollout':
 +
Name of the manager used to track field ownership.
 +
 +
    -f, --filename=[]:
 +
Filename, directory, or URL to files identifying the resource to get from a server.
 +
 +
    -k, --kustomize='':
 +
Process the kustomization directory. This flag can't be used together with -f or -R.
 +
 +
    -o, --output='':
 +
Output format. One of: (json, yaml, name, go-template, go-template-file, template, templatefile, jsonpath,
 +
jsonpath-as-json, jsonpath-file).
 +
 +
    -R, --recursive=false:
 +
Process the directory used in -f, --filename recursively. Useful when you want to manage related manifests
 +
organized within the same directory.
 +
 +
    -l, --selector='':
 +
Selector (label query) to filter on, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2). Matching
 +
objects must satisfy all of the specified label constraints.
 +
 +
    --show-managed-fields=false:
 +
If true, keep the managedFields when printing objects in JSON or YAML format.
 +
 +
    --template='':
 +
Template string or path to template file to use when -o=go-template, -o=go-template-file. The template format
 +
is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
 +
 +
Usage:
 +
  kubectl rollout restart RESOURCE [options]
 +
 +
Use "kubectl options" for a list of global command-line options (applies to all commands).
 +
</pre>
  
 
== See also ==
 
== See also ==

Revision as of 14:18, 7 July 2022

kubectl rollout restart
kubectl rollout restart --help
Restart a resource.

     Resource rollout will be restarted.

Examples:
  # Restart a deployment
  kubectl rollout restart deployment/nginx

  # Restart a daemon set
  kubectl rollout restart daemonset/abc

  # Restart deployments with the app=nginx label
  kubectl rollout restart deployment --selector=app=nginx

Options:
    --allow-missing-template-keys=true:
	If true, ignore any errors in templates when a field or map key is missing in the template. Only applies to
	golang and jsonpath output formats.

    --field-manager='kubectl-rollout':
	Name of the manager used to track field ownership.

    -f, --filename=[]:
	Filename, directory, or URL to files identifying the resource to get from a server.

    -k, --kustomize='':
	Process the kustomization directory. This flag can't be used together with -f or -R.

    -o, --output='':
	Output format. One of: (json, yaml, name, go-template, go-template-file, template, templatefile, jsonpath,
	jsonpath-as-json, jsonpath-file).

    -R, --recursive=false:
	Process the directory used in -f, --filename recursively. Useful when you want to manage related manifests
	organized within the same directory.

    -l, --selector='':
	Selector (label query) to filter on, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2). Matching
	objects must satisfy all of the specified label constraints.

    --show-managed-fields=false:
	If true, keep the managedFields when printing objects in JSON or YAML format.

    --template='':
	Template string or path to template file to use when -o=go-template, -o=go-template-file. The template format
	is golang templates [http://golang.org/pkg/text/template/#pkg-overview].

Usage:
  kubectl rollout restart RESOURCE [options]

Use "kubectl options" for a list of global command-line options (applies to all commands).

See also

Advertising: