faas-cli

Official CLI for OpenFaaS

OTHER License

Downloads
48
Stars
787
Committers
71

Bot releases are hidden (Show)

faas-cli - Allow Gateway URL override in env-var: OPENFAAS_URL

Published by alexellis over 6 years ago

Notes:

  • Allows Gateway URL override in env-var: OPENFAAS_URL

I.e. you can add export OPENFAAS_URL=127.0.0.1:31112 to your .bash_rc file on Linux

Priority is explained in the README.md file

  • 127.0.0.1 is the new default URL

The default host of localhost is replaced for 127.0.0.1 to avoid issues with IPv6 aliases on some Linux systems

faas-cli - Adds new flags to invoke and new commands

Published by alexellis over 6 years ago

  • --async flag for faas invoke #340
  • --header flag for faas invoke #333
  • optional username --prefix for faas new #339

Release contributors @johnmccabe @kenfdev @viveksyngh

faas-cli - Minor release for bug fix

Published by alexellis over 6 years ago

faas template pull was not picking up the default repository.
Fixes brew build - #313

faas-cli - Tweaks to Function Store commands

Published by alexellis over 6 years ago

  • Store command can accept -u or --url to provide an alternative JSON file.
faas-cli - Pull templates from private Git repos

Published by alexellis over 6 years ago

Append http prefix to the gateway URL when missing #281 @stefanprodan
Pull templates from Git repos, including private #274 @LucasRoesler
Add Function Store to the CLI https://github.com/openfaas/faas-cli/pull/265 @amirkarimi
Dockerfile as a language https://github.com/openfaas/faas-cli/pull/275 @itscaro
use docker/pkg/term to correct colored texts on Windows #290 @itscaro
Bump Golang 1.9.2 #283 @itscaro
Moved vendoring tool to dep. #282 @dungeonmaster18

faas-cli - December patches

Published by alexellis almost 7 years ago

Changelog notes:

  • Use original file-mode from templates/source @ganesshkumar
  • get.sh uses non-root @rgee0
  • CPU limit support @nicholasjackson
  • Automatic update (rather than delete/re-create) for existing functions @ericstoekl
  • Use external template repository openfaas/templates @alexellis
  • Error message refactoring @itscaro
faas-cli - Minor fixes

Published by alexellis almost 7 years ago

Enables keep-alive for logging into the LoadBalancer on GKE. #246
Merge secrets from CLI arguments and YAML #241 #235

Utility script creates alias for faas #234

faas-cli - Support custom community templates

Published by alexellis almost 7 years ago

  • Support custom community templates via #220 @ericstoekl @itscaro
faas-cli template pull
faas-cli new --list
faas-cli - Fixes for CLI

Published by alexellis almost 7 years ago

faas-cli - Tagging for brew.

Published by alexellis almost 7 years ago

faas-cli - Enable shrinkwrap for templated images

Published by alexellis almost 7 years ago

Shrinkwrap writes out a set of intermediary files which can be used for CI/CD to build your function.

faas-cli - Re-enable suppress_lock flag

Published by alexellis almost 7 years ago

Re-enable suppress_lock flag as optional way to bypass writing a lock file for healthchecks.

faas-cli - Basic authentication support

Published by alexellis almost 7 years ago

Highlights:

  • Basic authentication support #182 via @stefanprodan

Huge props to @stefanprodan for PR and to #teamserverless for reviewing and testing. @johnmccabe @ericstoekl @Lewiscowles1986 @nenadilic84

$ faas-cli login --user admin --password-stdin
enter your password

With this change we introduce a new config file in your $HOME directory - .openfaas/config.yml

To remove credentials use faas-cli logout.

faas-cli - New template for plain "Dockerfile"

Published by alexellis almost 7 years ago

New template for plain "Dockerfile" based upon AlpineLinux.
Non-root merged for Node.js
Fixes for overriding Gateway

faas-cli - Gateway override parameter

Published by alexellis almost 7 years ago

Release allows --gateway as override parameter for list and invoke verbs.

faas-cli - Extended timeouts

Published by alexellis almost 7 years ago

Extended timeouts for function calls between 60 and 120 seconds.

faas-cli - Support Labels for functions

Published by alexellis almost 7 years ago

Support Labels for functions

faas-cli - Fix for brew formula

Published by alexellis about 7 years ago

faas-cli - Minor fixes

Published by alexellis about 7 years ago

  • Allows gateway parameter override when specifying YAML file with non-default gateway.
faas-cli - Secrets support at deploy time

Published by alexellis about 7 years ago

This release adds secret support at deploy time in YAML or via --secret flag.

Related: https://github.com/openfaas/faas-netes/pull/54