github.com/argoproj/argo-events@v1.9.1/examples/event-sources/redis.yaml (about) 1 apiVersion: argoproj.io/v1alpha1 2 kind: EventSource 3 metadata: 4 name: redis 5 spec: 6 redis: 7 example: 8 # HostAddress refers to the address of the Redis host/server 9 hostAddress: redis.argo-events.svc:6379 10 # Password required for authentication. 11 # +optional 12 13 # password: 14 # name: name_of_secret_that_holds_password 15 # key: key_within_secret_which_holds_password_value 16 17 # DB to use. If not specified, default DB 0 will be used. 18 # +optional 19 db: 0 20 # Channels to subscribe to listen events. 21 channels: 22 - FOO 23 24 # example-tls: 25 # hostAddress: redis.argo-events.svc:6379 26 # db: 0 27 # channels: 28 # - FOO 29 # tls: 30 # caCertSecret: 31 # name: my-secret 32 # key: ca-cert-key 33 # clientCertSecret: 34 # name: my-secret 35 # key: client-cert-key 36 # clientKeySecret: 37 # name: my-secret 38 # key: client-key-key