Skip to content

Commit

Permalink
Merge pull request #54 from quanxiang-cloud/per-release/v1.1.2-rc1
Browse files Browse the repository at this point in the history
fix: miss implant dapr pubsub defination
  • Loading branch information
kevinlee607 authored Aug 26, 2022
2 parents 532fe0f + c5796de commit ed587cd
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions deployment/quanxiang_charts/implant/templates/faas-pubsub.yaml
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

0 comments on commit ed587cd

Please sign in to comment.