Skip to content

Tags: blinkbear/faas-cli

Tags

0.15.5

Toggle 0.15.5's commit message
Fix issue where API returns no annotations

This happened when my API returned null, nothing at all
for annotations instead of an empty map, it caused a
nil reference and panic. Tested with the change and it worked.

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

0.15.4

Toggle 0.15.4's commit message
Move auth commands to pro plugin

These are and were only licensed for OpenFaaS Pro users,
not for Community Edition (CE), so it makes sense that they
live in the pro plugin.

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

0.15.3

Toggle 0.15.3's commit message
Enable additional plugin names

This removes the hard-coded check for "pro" as the verb for
plugins meaning any binary placed in the right directory
can be used.

Tested by placing kubectl into .openfaas/plugins then
running "faas-cli kubectl"

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

0.15.2

Toggle 0.15.2's commit message
add support for arm64 architecture on darwin

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

0.15.1

Toggle 0.15.1's commit message
Switch to arkade archive package for reading tar files

Signed-off-by: Han Verstraete (OpenFaaS Ltd) <[email protected]>

0.15.0

Toggle 0.15.0's commit message
Add experimental support for plugins

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

0.14.11

Toggle 0.14.11's commit message
Only pull from TemplateConfigs when set in stack file

Fixes an issue where the default templates could be pulled
and conflict with TemplateConfigs, meaning the template set in
TemplateConfigs was never pulled.

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

0.14.10

Toggle 0.14.10's commit message
Fix issue with overrides for env-vars in store

The store deploy command was passing multiple environment
variables to the deployment endpoint, instead of implementing
the intended precedence.

Tested with a local faasd instance. This is important for
when people test with things like the sleep function from the
openfaas function store.

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

0.14.9

Toggle 0.14.9's commit message
Fix errors_test

It seems like errors_test was referencing a global variable
and not its own local variable for printing an error message
in a failed test.

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

0.14.8

Toggle 0.14.8's commit message
Make describe output for envvars deterministic

As `describe` uses a map to store the env var kv pairs its output varies
in its order.  This is undesirable.

This change introduces a means by which env var output ordering is
predictable.

Signed-off-by: Richard Gee <[email protected]>