From 229ceaf9993d9640d49284c101ae31e8c9fbf732 Mon Sep 17 00:00:00 2001 From: toshi0607 Date: Sun, 8 Dec 2019 16:34:49 +0900 Subject: [PATCH 1/2] add slide --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 858ab66..1e33cfa 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ * [Knativeで作るDIY FaaS @ServerlessDays Tokyo 2019](https://tokyo.serverlessdays.io/) * [スライド](https://speakerdeck.com/toshi0607/serverless-days-tokyo-2019-knative-workshop) + * [v1.0.0](https://github.com/toshi0607/build-your-own-platform-with-knative/tree/v1.0.0) +* [Knativeで作るDIY FaaS @ServerlessDays Fukuoka 2019](https://fukuoka.serverlessdays.io/) + * [スライド](https://speakerdeck.com/toshi0607/serverless-days-fukuoka-2019-knative-workshop) + * [v1.1.0](https://github.com/toshi0607/build-your-own-platform-with-knative/tree/v1.1.0) ## コンテンツ From e158917f88f0ca35eb8802ae8b7ea86cd9d923ed Mon Sep 17 00:00:00 2001 From: toshi0607 Date: Sun, 8 Dec 2019 17:15:05 +0900 Subject: [PATCH 2/2] add articles --- step1.md | 2 ++ step3.md | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/step1.md b/step1.md index d1a5330..3829658 100644 --- a/step1.md +++ b/step1.md @@ -94,6 +94,8 @@ $ kubectl delete -f service.yaml * [helloworld.go](https://github.com/knative/docs/blob/master/docs/serving/samples/hello-world/helloworld-go/helloworld.go) * Knativeを利用せずに、Kubernetesの組み込みオブジェクトでknative Serviceを構築する場合との比較 * [Migrating from Kubernetes Deployment to Knative Serving](https://medium.com/google-cloud/migrating-from-kubernetes-deployment-to-knative-serving-bdc45ef1bb9e) +* [Knative = Kubernetes Networking++の全訳](https://qiita.com/toshi0607/items/45403965beaa5bd1f8ca) + * Knativeはサーバーレスのビルディングブロックであるという文脈でで説明されることが多く、本来メリットを受けることができるはずのKubernetes上のアプリケーションやマイクロサービスの開発者、運用・管理者などに便利な機能が伝わってないという話があるようです。 ## オートスケール diff --git a/step3.md b/step3.md index 82bfb38..9bca21f 100644 --- a/step3.md +++ b/step3.md @@ -174,6 +174,11 @@ $ curl -H "Host: go-function.default.example.com" http://$IP_ADDRESS --data '{"N * [cloudevents/sdk-go](https://github.com/cloudevents/sdk-go) * [cloudevents/sdk-goを活用したサンプル実装](https://github.com/knative/eventing-contrib/blob/master/cmd/event_display/main.go) +こちらも手軽にFunctionを書けるようにするためのライブラリとして参考にしてみてください。 + +* [Functions Framework for Go](https://github.com/GoogleCloudPlatform/functions-framework-go) + + ## 参考 * [triggermesh/openfaas-runtime](https://github.com/triggermesh/openfaas-runtime)