Kuadrant / kuadrantctl

Kuadrant configuration command line utility
Apache License 2.0
6 stars 12 forks source link

Use positional argument for OAS #92

Open pehala opened 3 weeks ago

pehala commented 3 weeks ago

Currently we use named argument --oas that needs to be present in every generate command. Since we there can always be only one argument, is required and there can be only OAS, I propose to change it to positional argument.

Currently: kubectl generate gatewayapi httproute --oas test.yaml Proposed: kubectl generate gatewayapi httproute test.yaml