gansheer opened a new pull request, #3884: URL: https://github.com/apache/camel-k/pull/3884
fixes 2586 ## Motivation The `kamel bind` command uses 0 index start for the definition of step properties : ```sh kamel bind ... --step my-step-1 --step my-step-2 -p step-0.my-key=value1 -p step-1.my-key=value2 ``` Having an index start at 1 is more user friendly : ```shell kamel bind ... --step my-step-1 --step my-step-2 -p step-1.my-key=value1 -p step-2.my-key=value2 ``` ## Modifications * Modify the transformation from command to spec for steps in biding command code * Add a unit test on step values **Release Note** ```release-note feat(cli): Update Kamel bind step index in properties to start at 1 instead of 0 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
