Tags: pableeee/faas-cli
Tags
Add a '--no-read-template' flag to 'faas deploy'. Signed-off-by: Bruno Miguel Custódio <[email protected]>
Vendor 0.16.0 of the gateway Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
Update x/sys module to support Risc-V Signed-off-by: CarlosEDP <[email protected]>
Trim newlines from log messages **What** - Remove trailing newlines from log messages to avoid double spacing the log stream when it is printed to stdout. The current implementation results in empty lines between each log line, this looks odd for users. This commit ensures there is not an empty line between log lines. Signed-off-by: Lucas Roesler <[email protected]>
Add token auth support to the logs cmd **What** - Add the token flag to the logs command, this allows users to oauth as well as basic auth. - additionally add some basic test for the GetLogs method and use the SetToken helper in the List command Signed-off-by: Lucas Roesler <[email protected]>
Fix `template store list` command An issue existed whereby arm64 templates would not display in the `template list` command. The cause was located within the `formatTemplatesOutput()` function which was seemingly doing some pre-filtering to ascertain whether the output should return empty if no templates matching the supplied pattern were found. Within this function a comparison was being performed of the template.Platform string length and the range index of the current slice. This meant that as arm64 didnt occur within the first 6/7 elements the function would return and empty string. Fix: Move the call to filterTemplate() into the formatTemplatesOutput() function and then test for a non-zero slice length before proceeding. As the templates slice is filtered higher up this removes the need to call in to filterTemplate() within the two output functions, which consequently also removes the need to pass platform into them. Signed-off-by: Richard Gee <[email protected]>
Document the auth command's two flows Adds documentation on usage for code and client_credentials flows. Signed-off-by: Alex Ellis <[email protected]>
Add validation tests for empty parameters This patch adds unit tests to check the auth command for the auth-url and client-id which are both required. Signed-off-by: Alex Ellis <[email protected]>
Add token based authentication to version command Signed-off-by: Vivek Singh <[email protected]>
Update generate CRD command help message Signed-off-by: Vivek Singh <[email protected]>