Hide Forgot
Description of problem: Create multiple projects and try to run go get projects, often list displayed is not sorted by name. It should be sorted by name. Version-Release number of selected component (if applicable): How reproducible: Often Steps to Reproduce: 1. oc new-project aaa 2. oc new-project bbb 3. oc new-project ccc 4. oc new-project ddd 5. oc new-project eee 6. oc get projects Actual results: Often the result returned is not sorted by name NAME DISPLAY NAME STATUS ccc Active ddd Active eee Active aaa Active bbb Active Expected results: Result should be always sorted by name NAME DISPLAY NAME STATUS aaa Active bbb Active ccc Active ddd Active eee Active Additional info:
The output of `get` isn't supposed to be deterministic by design. The --sort-by flag is provided to allow sorting. Also, `oc projects` is a more end-user targeted command to list project, and displays projects sorted by name.