You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Restore MIT license for faas-cli
A notice in the LICENSE file stated that there was a mixed
license with some OpenFaaS Pro code, that's no longer the case
so the LICENSE can be reinstated.
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
Replace secrets via secret create when needed
An upsert is more convenient from CI/CD jobs and from bash
scripts.
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
Support a random port for the local-run
This allows users to run multiple local-runs without picking
out ports themselves.
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
Remove armv7 from build and examples
The armv7 target has been deprecated by OpenFaaS. You are
still able to use older builds, but arm64 should be used
instead going forward.
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
Support --pull for build/publish commands
The --pull flag is supported by Docker and forces a pull
attempt to be made for base images for the case that there
is a newer version available.
The main use-case for this is when teams are publishing
production or internal images directly from their own machines
which accumulate older images.
This is not needed in CI pipelines which start with an empty
library, so always pull the base images fresh from source.
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>