Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a example for union operator in the shell env #16282

Merged
merged 1 commit into from
Oct 8, 2019

Commits on Sep 10, 2019

  1. 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']}"`
    hardy4yooz committed Sep 10, 2019
    Configuration menu
    Copy the full SHA
    df3ab67 View commit details
    Browse the repository at this point in the history