-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from quanxiang-cloud/per-release/v1.1.2-rc1
fix: miss implant dapr pubsub defination
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
deployment/quanxiang_charts/implant/templates/faas-pubsub.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: faas-pubsub | ||
namespace: {{ .Values.namespace }} | ||
spec: | ||
metadata: | ||
- name: brokers | ||
value: kafka.lowcode.svc.cluster.local:9092 | ||
- name: authRequired | ||
value: "false" | ||
- name: maxMessageBytes | ||
value: 1024 | ||
type: pubsub.kafka | ||
version: v1 | ||
--- | ||
apiVersion: dapr.io/v2alpha1 | ||
kind: Subscription | ||
metadata: | ||
name: faas-dapr | ||
namespace: {{ .Values.namespace }} | ||
scopes: | ||
- faas-dapr | ||
spec: | ||
pubsubname: faas-pubsub | ||
routes: | ||
default: /event | ||
topic: lowcode.faas |