Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a example for union operator in the shell env
In the current example, single quotes are used, but the union operator can be confusing. Incorrect: `kubectl get pod -o=jsonpath='{.items[*]['metadata.name','spec.nodeName']}'` Correct: `kubectl get pods -o=jsonpath="{.items[*]['metadata.name', 'status.capacity']}"`
- Loading branch information