Skip to content

Tags: pableeee/faas-cli

Tags

0.9.1

Toggle 0.9.1's commit message
Add a '--no-read-template' flag to 'faas deploy'.

Signed-off-by: Bruno Miguel Custódio <[email protected]>

0.9.0

Toggle 0.9.0's commit message
Vendor 0.16.0 of the gateway

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>

0.8.23

Toggle 0.8.23's commit message
Update x/sys module to support Risc-V

Signed-off-by: CarlosEDP <[email protected]>

0.8.22

Toggle 0.8.22's commit message
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]>

0.8.21

Toggle 0.8.21's commit message
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]>

0.8.20

Toggle 0.8.20's commit message
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]>

0.8.19

Toggle 0.8.19's commit message
Document the auth command's two flows

Adds documentation on usage for code and client_credentials
flows.

Signed-off-by: Alex Ellis <[email protected]>

0.8.18

Toggle 0.8.18's commit message
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]>

0.8.17

Toggle 0.8.17's commit message
Add token based authentication to version command

Signed-off-by: Vivek Singh <[email protected]>

0.8.16

Toggle 0.8.16's commit message
Update generate CRD command help message

Signed-off-by: Vivek Singh <[email protected]>