Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/funktionio/funktion
a CLI tool for working with funktion
https://github.com/funktionio/funktion
faas funktion kubernetes
Last synced: 6 days ago
JSON representation
a CLI tool for working with funktion
- Host: GitHub
- URL: https://github.com/funktionio/funktion
- Owner: funktionio
- License: apache-2.0
- Created: 2016-12-05T09:43:26.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-29T08:31:05.000Z (about 7 years ago)
- Last Synced: 2024-10-30T08:18:20.243Z (3 months ago)
- Topics: faas, funktion, kubernetes
- Language: Go
- Homepage: https://funktion.fabric8.io/
- Size: 184 KB
- Stars: 297
- Watchers: 17
- Forks: 25
- Open Issues: 11
-
Metadata Files:
- Readme: ReadMe.md
- License: LICENSE.md
Awesome Lists containing this project
- k8s_awesome_document - Funktion - --Funktion是一个为Kubernetes设计的开源事件驱动的lambda风格编程模型。Funktion与fabric8平台紧密结合。使用Funktion,您可以创建从200多个事件源订阅的流来调用函数,包括大多数数据库、消息传递系统、社交媒体和其他中间件和协议。 (🏗相关开源项目 / Serverless /函数工具)
README
# NOTE this open source project is now sandboxed
Red Hat has stopped funding this OSS project! Feel free to fork it and maintain it if you like.
If you're looking for a kubernetes based FaaS we recommend you try use one of these open source alternatives:
* [kubeless](http://kubeless.io/)
* [openwhisk](https://openwhisk.apache.org/)# Funktion
**Funktion** is an open source event driven lambda style programming model on top of [Kubernetes](http://kubernetes.io). This project provides a command line tool for working with `Funktion`
Funktion supports hundreds of different [trigger endpoint URLs](http://camel.apache.org/components.html) including most network protocols, transports, databases, messaging systems, social networks, cloud services and SaaS offerings.
In a sense funktion is a [serverless](https://www.quora.com/What-is-Serverless-Computing) approach to event driven microservices as you focus on just writing _funktions_ and Kubernetes takes care of the rest. Its not that there's no servers; its more that you as the funktion developer don't have to worry about managing them.
### Getting Started
Please [Install Funktion](https://funktion.fabric8.io/docs/#install) then follow the [Getting Started Guide](https://funktion.fabric8.io/docs/#get-started)
### Documentation
Please see [the website](https://funktion.fabric8.io/) and the [User Guide](https://funktion.fabric8.io/docs/)
### License
This project is [Apache Licensed](license.md)
### Building
You will need a recent install of `go` along with `glide`.
Then the first time you want to build you need to do this:
```
mkdir -p $GOHOME/src/github.com/funktionio
cd $GOHOME/src/github.com/funktionio
git clone https://github.com/funktionio/funktion.git
cd funktion
make bootstrap
```Now whenever you want to do build you can just type
```
make
```and you'll get a `./funktion` binary you can play with
#### Running locally outside of docker
If you want to hack on the `operator` its often easier to just run it locally on your laptop using your local build via
```
./funktion operate
```And scale down/delete the `funktion-operator` thats running inside kubernetes.
Provided your machine can talk to your kubernetes cluster via:
```
kubectl get pod
kubectl get node
```then the `funktion` binary should be able to monitor and operate all your flows and functions.