Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

v1.0.0

Compare
Choose a tag to compare
@kubernetes-bitnami kubernetes-bitnami released this 07 Nov 14:01
· 81 commits to master since this release
f7736a4

After several pre-releases of Kubeless v1.0.0 we think is time to finally release v1.0.0! This release includes a fix for the kubeless cli --env flag and several changes in some runtimes:

  • [refactor] Runtimes are now developed in https://github.com/kubeless/runtimes. That allows to separate the development of the different runtimes from the core of Kubeless.
  • [NodeJS] Support for CloudEvents 0.1. That support has been added as a new runtime to avoid breaking changes. Check the documentation here.
  • [NodeJS] Allow to set extra configuration for npm through the env var NPM_CONFIG_EXTRA.
  • [Python] Allow any subpath.
  • [Ruby] New versions: 2.3 and 2.5.
  • [Golang] Allow CORS requests.
  • [Java] Print errors in pod logs.

These are the commits and features included in this release:

To install this latest version, use the manifest that is part of the release:

WITH RBAC ENABLED:

kubectl create ns kubeless
kubectl create -f https://github.com/kubeless/kubeless/releases/download/v1.0.0/kubeless-v1.0.0.yaml 

WITHOUT RBAC:

kubectl create ns kubeless
kubectl create -f https://github.com/kubeless/kubeless/releases/download/v1.0.0/kubeless-non-rbac-v1.0.0.yaml 

OPENSHIFT:

oc create ns kubeless
oc create -f https://github.com/kubeless/kubeless/releases/download/v1.0.0/kubeless-openshift-v1.0.0.yaml