Skip to content

Tags: pableeee/faas-cli

Tags

0.10.5

Toggle 0.10.5's commit message
Add optional version checking to faas-cli version

Given that the code now exists to check for the release of
kubeseal, this can be used to detect version drift of the faas-cli
itself.

Tested on MacOS with "go build"

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

0.10.4

Toggle 0.10.4's commit message
Fix openfaas#729

Updates the example usage for faas-cli cloud seal to include
the --from-file syntax. Fixes: openfaas#729

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

0.10.3

Toggle 0.10.3's commit message
Restore getTemplateURL() in template pull

Rework in openfaas#668 removed the call to getTemplateURL() which set `repository` to a value based on a precedence order.  This meant that an argument needed to be passed to `faas template pull` in order for it to complete without error, which had implications for pulling of the standard templates using the bare command.

This commit re-introduces the line which determines what value should be used for the repository before the code heads off into pullTemplate()

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

0.10.2

Toggle 0.10.2's commit message
Remove unnecessary println from deploy_test

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

0.10.1

Toggle 0.10.1's commit message
Toggle verbosity on logs command

This commit changes the name / instance to be defaulted to
false for brevity. They can be enabled again by passing the flags.

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

0.10.0

Toggle 0.10.0's commit message
Update alias from v2 to storeV2 for better readability

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

0.9.5

Toggle 0.9.5's commit message
Fix issue with cloud seal command

This commit fixes the issue with `cloud seal` command `--namespace`
flag. Since default value for `--namespace` flag for cloud is different
than other commands `--namespace` flag. It was getting overriden by
`--namespace` flag value from list command. This commit changes the
variable used for `--namespace` flag in `list` command.

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

0.9.4

Toggle 0.9.4's commit message
Add namespace flag to secrets commands

This commit add `--namespace` flags to the secret subcommand in order to
support multiple namesapces feature.

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

0.9.3

Toggle 0.9.3's commit message
Add support for namespaces

Adding support for namespaces on the following commands:
 - delete
 - deploy
 - describe
 - list
 - store deploy
 - remove

Signed-off-by: Martin Dekov <[email protected]>

0.9.2

Toggle 0.9.2's commit message
Add flags to control the log output format

**What**
- Add new flags to toggle the name, instance, and timestamp fields.
Additionally, the new `time-format` also allows controlling the actual
timestamp format.
- Also provide the log format flag to allow printing the output as JSON,
key-values, or the plain format.  This should make it easy to integrate
with other tools, like JQ etc.

Signed-off-by: Lucas Roesler <[email protected]>