kf
provides a cf
-like experience on top of Knative.
kf
aims to be fully compatible with CF applications and lifecycle. It supports
logs, buildpacks, app manifests, routing, service brokers, and injected services.
At the same time, it aims to improve the operational experience by supporting git-ops, self-healing infrastructure, containers, a service mesh, autoscaling, scale-to-zero, improved quota management and does it all on Kubernetes using industry-standard OSS tools including Knative, Istio, and Tekton.
Follow the install instructions to create a GKE cluster, install Kf into it, and deploy an app with the kf
CLI.
Requirements:
- Golang
1.12
(go mod is used and required for dependencies)
Building:
$ ./hack/build.sh
Notes:
- The
kf
CLI must be built outside of the$GOPATH
folder unless you explicitly useexport GO111MODULE=on
.
We use ko for rapid development
and during the release process to build a full set of kf
images
and installation YAML.
To update your cluster while developing run ko apply
:
KO_DOCKER_REPO=gcr.io/my-repo ko apply -f config
This will build any images required by config/
, upload them to the provided
registry, and apply the resulting configuration to the current cluster.