gitextract_3z6jna8z/ ├── .gitignore ├── LICENSE ├── README.md ├── apim-gateway/ │ ├── README.md │ ├── apim/ │ │ ├── api.yaml │ │ ├── policy-all.json │ │ ├── policy-echo.json │ │ ├── policy-message.json │ │ └── policy-save.json │ └── k8s/ │ ├── binding.yaml │ ├── echo-service.yaml │ ├── event-subscriber.yaml │ ├── gateway.yaml │ └── pubsub.yaml ├── autoscaling-on-queue/ │ ├── README.md │ ├── deployment/ │ │ ├── kafka-client.yaml │ │ ├── kafka-pubsub.yaml │ │ ├── keda-2.0.0-beta.yaml │ │ ├── producer.yaml │ │ ├── subscriber-scaler.yaml │ │ └── subscriber.yaml │ ├── producer/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ └── subscriber/ │ ├── Dockerfile │ ├── Makefile │ ├── go.mod │ ├── go.sum │ └── main.go ├── component-api/ │ ├── README.md │ ├── config/ │ │ ├── email.yaml │ │ ├── state.yaml │ │ └── twitter.yaml │ └── sample/ │ ├── email.json │ └── twitter.json ├── cron-binding/ │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── config/ │ │ └── cron.yaml │ ├── go.mod │ ├── go.sum │ ├── k8s/ │ │ ├── component.yaml │ │ └── deployment.yaml │ └── main.go ├── dapr-aci/ │ ├── README.md │ ├── components/ │ │ ├── pubsub.yaml │ │ └── state.yaml │ ├── deployment/ │ │ └── app.yaml │ └── src/ │ ├── Dockerfile │ ├── Makefile │ ├── go.mod │ ├── go.sum │ └── main.go ├── dapr-api-on-aci/ │ ├── README.md │ └── email.yaml ├── daprized-ingress/ │ ├── README.md │ └── config/ │ ├── ingress-annotations.yaml │ ├── ingress-config.yaml │ ├── ingress.yaml │ └── namespace.yml ├── fan-out/ │ ├── README.md │ ├── grpc-echo-service/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── deployment.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── http-format-converter/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── config/ │ │ │ ├── source-pubsub.yaml │ │ │ └── target-binding.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── k8s/ │ │ │ ├── components.yaml │ │ │ └── deployment.yaml │ │ └── main.go │ ├── queue-event-consumer/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── config/ │ │ │ └── source-pabusb.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── k8s/ │ │ │ ├── deployment.yaml │ │ │ ├── target-kafka.yaml │ │ │ └── target-redis.yaml │ │ └── main.go │ ├── queue-event-producer/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── config/ │ │ │ └── target-pabusb.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── k8s/ │ │ │ ├── deployment.yaml │ │ │ ├── target-kafka.yaml │ │ │ └── target-redis.yaml │ │ └── main.go │ ├── queue-format-converter/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── config/ │ │ │ ├── kafka.yaml │ │ │ ├── source-pabusb.yaml │ │ │ └── target-pubsub.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── k8s/ │ │ │ ├── deployment.yaml │ │ │ ├── target-kafka.yaml │ │ │ └── target-redis.yaml │ │ └── main.go │ └── service-format-converter/ │ ├── Dockerfile │ ├── Makefile │ ├── config/ │ │ └── source-pubsub.yaml │ ├── go.mod │ ├── go.sum │ ├── k8s/ │ │ ├── components.yaml │ │ └── deployment.yaml │ └── main.go ├── grpc-echo-service/ │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── deployment/ │ │ ├── app.yaml │ │ └── space.yaml │ ├── go.mod │ ├── go.sum │ └── main.go ├── grpc-event-subscriber/ │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── config/ │ │ └── pubsub.yaml │ ├── go.mod │ ├── go.sum │ ├── k8s/ │ │ ├── component.yaml │ │ └── deployment.yaml │ └── main.go ├── hardened/ │ ├── Makefile │ ├── README.md │ ├── config/ │ │ ├── pubsub.yaml │ │ └── state.yaml │ ├── deployment/ │ │ ├── hardened/ │ │ │ ├── app1.yaml │ │ │ ├── app2.yaml │ │ │ ├── app3.yaml │ │ │ ├── pubsub.yaml │ │ │ └── state.yaml │ │ ├── namespace/ │ │ │ ├── ns.yaml │ │ │ ├── role.yaml │ │ │ └── trace.yaml │ │ └── simple/ │ │ ├── app1.yaml │ │ ├── app2.yaml │ │ ├── app3.yaml │ │ ├── pubsub.yaml │ │ └── state.yaml │ └── src/ │ ├── app1/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── app2/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ └── app3/ │ ├── Dockerfile │ ├── Makefile │ ├── go.mod │ ├── go.sum │ └── main.go ├── http-echo-service/ │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── deployment.yaml │ ├── go.mod │ ├── go.sum │ └── main.go ├── http-event-subscriber/ │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── clooudevent.json │ ├── config/ │ │ └── pubsub.yaml │ ├── go.mod │ ├── go.sum │ ├── k8s/ │ │ ├── component.yaml │ │ └── deployment.yaml │ └── main.go ├── order-cancellation/ │ ├── README.md │ ├── demo/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── component/ │ │ │ ├── audit-store.yaml │ │ │ ├── email.yaml │ │ │ ├── queue.yaml │ │ │ └── workflow-store.yaml │ │ ├── config/ │ │ │ └── order-cancel.json │ │ ├── data/ │ │ │ ├── cancellation.json │ │ │ ├── email.json │ │ │ └── meta.json │ │ └── deployment/ │ │ ├── auditor.yaml │ │ ├── ingress.yaml │ │ ├── space.yaml │ │ ├── viewer.yaml │ │ └── workflow.yaml │ └── src/ │ ├── fn/ │ │ ├── .gitignore │ │ ├── DaprAzFn.csproj │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── ReceiveEvent.cs │ │ ├── config/ │ │ │ ├── meta.json │ │ │ ├── pubsub.yaml │ │ │ └── statestore.yaml │ │ ├── host.json │ │ └── local.settings.json │ └── viewer/ │ ├── Dockerfile │ ├── Makefile │ ├── config/ │ │ └── queue.yaml │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── resource/ │ ├── static/ │ │ ├── css/ │ │ │ └── app.css │ │ └── js/ │ │ └── app.js │ └── template/ │ ├── footer.html │ ├── header.html │ └── index.html ├── pipeline/ │ ├── README.md │ ├── k8s/ │ │ ├── ingress.yaml │ │ ├── process-pubsub.yaml │ │ ├── processor.yaml │ │ ├── provider.yaml │ │ ├── scorer.yaml │ │ ├── space.yaml │ │ ├── state.yaml │ │ ├── tweeter-pubsub.yaml │ │ ├── twitter.yaml │ │ └── viewer.yaml │ ├── sentiment-scorer/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── config/ │ │ │ └── secret.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── tweet-processor/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── config/ │ │ │ ├── result-pubsub.yaml │ │ │ └── source-pubsub.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── tweet-provider/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── config/ │ │ │ ├── pubsub.yaml │ │ │ ├── secret.yaml │ │ │ ├── state.yaml │ │ │ └── twitter.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ └── tweet-viewer/ │ ├── Dockerfile │ ├── Makefile │ ├── config/ │ │ └── source-pubsub.yaml │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── resource/ │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ └── app.css │ │ │ └── js/ │ │ │ └── app.js │ │ └── template/ │ │ ├── footer.html │ │ ├── header.html │ │ └── index.html │ └── tweet.json ├── setup/ │ ├── Makefile │ ├── README.md │ ├── aks/ │ │ ├── Makefile │ │ └── README.md │ ├── config/ │ │ ├── actor-dashboard.json │ │ ├── fluentd-config.yaml │ │ ├── fluentd.yaml │ │ ├── ingress-annotations.yaml │ │ ├── ingress-config.yaml │ │ ├── ingress-template.yaml │ │ ├── namespace-template.yml │ │ ├── sidecar-dashboard.json │ │ ├── system-services-dashboard.json │ │ └── zipkin.yaml │ ├── gke/ │ │ ├── Makefile │ │ └── README.md │ └── kubectl-install-dapr └── state-change-handler/ ├── Dockerfile ├── Makefile ├── README.md ├── config/ │ ├── pubsub.yaml │ └── statechange.yaml ├── go.mod ├── go.sum └── main.go