Tags: pableeee/faas-cli
Tags
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]>
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]>
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]>
Remove unnecessary println from deploy_test Signed-off-by: Richard Gee <[email protected]>
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]>
Update alias from v2 to storeV2 for better readability Signed-off-by: Vivek Singh <[email protected]>
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]>
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]>
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]>
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]>