You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 18, 2026. It is now read-only.
Workload get and workload list commands acceptyaml as an --output value today.
Because yml is a valid extension for the same file-type, we should accept yml and/or yaml
Proposed solution
Given I have a workload named foo
When I run `tanzu apps workload get foo -o yml`
Then the output from the command is exactly the same as if I ran `tanzu apps workload get foo -o yaml`
Given I have created workloads on my target cluster
When I run `tanzu apps workload list -o yml`
Then the output from the command is exactly the same as if I ran `tanzu apps workload list -o yaml`
Description of problem
Workload get and workload list commands accept
yamlas an--outputvalue today.Because
ymlis a valid extension for the same file-type, we should acceptymland/oryamlProposed solution