Difference between revisions of "Kubectl rollout status"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
error: required resource not specified | error: required resource not specified | ||
− | [[kubectl rollout]] | + | [[kubectl rollout status --help]] |
+ | |||
+ | [[kubectl rollout status deployment/]]XXXXXX | ||
Latest revision as of 16:59, 21 September 2023
kubectl rollout status error: required resource not specified
kubectl rollout status --help
kubectl rollout status deployment/XXXXXX
kubectl rollout status --help Show the status of the rollout. By default 'rollout status' will watch the status of the latest rollout until it's done. If you don't want to wait for the rollout to finish then you can use --watch=false. Note that if a new rollout starts in-between, then 'rollout status' will continue watching the latest revision. If you want to pin to a specific revision and abort if it is rolled over by another revision, use --revision=N where N is the revision you need to watch for. Examples: # Watch the rollout status of a deployment kubectl rollout status deployment/nginx Options: -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. -R, --recursive=false: Process the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory. --revision=0: Pin to a specific revision for showing its status. Defaults to 0 (last revision). -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. --timeout=0s: The length of time to wait before ending watch, zero means never. Any other values should contain a corresponding time unit (e.g. 1s, 2m, 3h). -w, --watch=true: Watch the status of the rollout until it's done. Usage: kubectl rollout status (TYPE NAME | TYPE/NAME) [flags] [options] Use "kubectl options" for a list of global command-line options (applies to all commands).
See also[edit]
kubectl rollout [ status | restart | resume | pause | history | undo ], kubectl rollout --help
- Kubernetes deployments, strategies:
kind: Deployment
, Strategies:Recreate
orRollingUpdate
,kubectl
[create | describe | get | scale | rollout | deployment/
], Kubernetes Canary Deployments,deployment.kubernetes.io
Advertising: