CONTRIBUTING.md はしっかり読みましょー!!
PR(プルリクエスト)をしてマージしてもらうことだけがすべてじゃない!
- ワークショップをやってみる
- OpenFaaSのアーキテクチャ について学んで見る
- Function Store に自分の作ったfunctionを追加してみる
- ブログを書いて コミュニティページ に追加する
- CLI の改善に貢献する
- SlackにJoinする
- Twitterで金曜日に
#FaaSFriday
ハッシュタグをつけて、何かしらOpenFaaSに関わることをつぶやく
- Go言語でコードを書く(OpenFaaSのコンポーネントはすべてGo言語で書かれています)
- フロントエンドのコードを書く
- GatewayのUI はAngularJS(1系です)
- OpenFaaS CloudのDashboard はReact
- functionを書いてみる(どんな言語でもOK。自分でtemplateを作ってみるのも面白い)
- PR(プルリクエスト)をレビューしてみたり、テストしてみたり
- 新機能を試してみて、フィードバックする
- Meetupやカンファレンスで話す
- OpenFaaS
- faas (https://github.com/openfaas/faas)
- 一番メインのリポジトリ。UI PortalとAPI Gatewayが含まれている
- certifier (https://github.com/openfaas/certifier)
- SwarmやKubernetesで正常に動作するかチェックするe2eテストの集まり
- faas-swarm (https://github.com/openfaas/faas-swarm)
- Swarm用のプロバイダ
- faas-netes (https://github.com/openfaas/faas-netes)
- Kubernetes用のプロバイダ
- openfaas-cloud (https://github.com/openfaas/openfaas-cloud)
- GitOpsをとりこんだCI/CD込のスタック。(現状はGitHubと連携する)
- faas-cli (https://github.com/openfaas/faas-cli)
- OpenFaaSのCLI。
kubectl
やdocker
コマンドのようなもの
- OpenFaaSのCLI。
- templates (https://github.com/openfaas/templates)
- OpenFaaS公式のfunctionのテンプレート
- docs (https://github.com/openfaas/docs)
- https://docs.openfaas.com のリポジトリ
- workshop (https://github.com/openfaas/workshop)
- OpenFaaSのハンズオンワークショップ
- nats-queue-worker (https://github.com/openfaas/nats-queue-worker)
- OpenFaaSのfunctionを非同期呼び出しする際に使用するNATS Streamingのworker
- www (https://github.com/openfaas/www)
- https://www.openfaas.com のリポジトリ
- faas (https://github.com/openfaas/faas)
- OpenFaaS-Incubator
- of-watchdog (https://github.com/openfaas-incubator/of-watchdog)
- 次世代watchdog。標準入出力の他にHTTPモードが追加されている
- faas-idler (https://github.com/openfaas-incubator/faas-idler)
- 指定した時間functionが使われていなければ0スケールさせる
- of-watchdog (https://github.com/openfaas-incubator/of-watchdog)
「いいこと思いついた!よし、コードを書いてPR出して驚かせよう!」
という流れは基本的にリジェクトされてしまいます。まずはIssueをあげるか、Slackで話し合うかが重要です。なので、
- Issueをあげる
- 議論(デザインレビュー)して、実装の方針を決める
- リポジトリをForkする
- 実装する
- PRを投げる
- レビュー後、必要であれば修正する
- マージされる
という流れになります。
Gitのコミットには必ず DCO (Developer's Certificate of Origin - 開発者起源証明書) が必要になります。適切なオープンソースライセンスのもとで貢献することを承認した署名が必要です。これは、コミットメッセージに以下の文言を必ず加えることで署名したものとなります。
Signed-off-by: <名> <姓> <メール@email.com>
Gitで user.name
と user.email
を設定しておけば git commit
に -s
を加えるだけでOKです。
git commit -s
コミット時は必ずこれが必要です。ない場合はマージされません。
- OrganizationのIssue一覧を見る
- openfaasとopenfaas-incubatorの PR 一覧(https://github.com/pulls?utf8=%E2%9C%93&q=is%3Aopen+is%3Apr+archived%3Afalse+user%3Aopenfaas+user%3Aopenfaas-incubator)
- openfaasとopenfaas-incubatorの issue 一覧(https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+archived%3Afalse+user%3Aopenfaas+user%3Aopenfaas-incubator+)
- Colly を使ったスクレーパーfunctionを作る
- puppeteer を使ってキャプチャを取得するfunctionを作る
- MachineBox と連携したfunctionを作る
- faceboxを使った例: https://github.com/Tofull/faas_facebox
- actions-on-google-nodejs を使ったfunctionを作る