Skip to content

Commit

Permalink
add optional values in the amqp event source example
Browse files Browse the repository at this point in the history
  • Loading branch information
spaghettifunk committed Jan 12, 2021
1 parent 9f030a3 commit d9ff89a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions examples/event-sources/amqp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,33 @@ spec:
# setting factor > 1 makes backoff exponential.
factor: 2
jitter: 0.2
# optional exchange settings
# if not povided, default values will be used
exchangeDeclare:
durable: true
autoDelete: false
internal: false
noWait: false
# optional queue settings
# if not povided, default values will be used
queueDeclare:
name: "my-queue-name"
durable: false
autoDelete: false
exclusive: true
noWait: false
# optional queue binding settings
# if not povided, default values will be used
queueBind:
noWait: false
# optional consume settings
# if not povided, default values will be used
consume:
consumerTag: "my-consumer-tag"
autoAck: true
exclusive: false
noLocal: false
noWait: false


# example-tls:
Expand Down

0 comments on commit d9ff89a

Please sign in to comment.