Skip to content

Commit

Permalink
en: Remove deprecated --include-uninitialized flag
Browse files Browse the repository at this point in the history
Signed-off-by: ialidzhikov <[email protected]>
  • Loading branch information
ialidzhikov committed Oct 18, 2019
1 parent 1fd11cd commit ab4771f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions content/en/docs/reference/kubectl/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ kubectl get replicationcontroller <rc-name>
# List all replication controllers and services together in plain-text output format.
kubectl get rc,services

# List all daemon sets, including uninitialized ones, in plain-text output format.
kubectl get ds --include-uninitialized
# List all daemon sets in plain-text output format.
kubectl get ds

# List all pods running on node server01
kubectl get pods --field-selector=spec.nodeName=server01
Expand All @@ -315,8 +315,8 @@ kubectl describe pods/<pod-name>
# Remember: Any pods that are created by the replication controller get prefixed with the name of the replication controller.
kubectl describe pods <rc-name>

# Describe all pods, not including uninitialized ones
kubectl describe pods --include-uninitialized=false
# Describe all pods
kubectl describe pods
```

{{< note >}}
Expand All @@ -340,8 +340,8 @@ kubectl delete -f pod.yaml
# Delete all the pods and services that have the label name=<label-name>.
kubectl delete pods,services -l name=<label-name>

# Delete all the pods and services that have the label name=<label-name>, including uninitialized ones.
kubectl delete pods,services -l name=<label-name> --include-uninitialized
# Delete all the pods and services that have the label name=<label-name>.
kubectl delete pods,services -l name=<label-name>

# Delete all pods, including uninitialized ones.
kubectl delete pods --all
Expand Down

0 comments on commit ab4771f

Please sign in to comment.