This repository provides a simple and fast way to run Cloud Foundry locally. It enables developers to rapidly prototype, develop, and test new ideas in an inexpensive setup.
You need to install following tools:
- kind: https://kind.sigs.k8s.io/docs/user/quick-start/#installing-from-release-binaries
- kubectl: https://kubernetes.io/docs/tasks/tools/#kubectl
- helm: https://helm.sh/docs/intro/install#through-package-managers
- make:
- It should be alreay installed on MacOS and Linux.
- For Windows installation see: https://gnuwin32.sourceforge.net/packages/make.htm
make up# Login via CF CLI and create a test space
make login
# Upload Java, Node, Go, and Binary buildpacks
# 'make bootstrap-complete' would upload all buildpacks
make bootstrapcf push -f examples/hello-js/manifest.yamlmake down