Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added in vhost to end of connection strings #70

Merged
merged 1 commit into from
Mar 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/scalers/rabbitmq-queue.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This specification describes the `rabbitmq` trigger for RabbitMQ Queue.
queueName: testqueue
```

The `host` value is the name of the environment variable your deployment uses to get the connection string. This is usually resolved from a `Secret V1` or a `ConfigMap V1` collections. `env` and `envFrom` are both supported. The resolved host should follow a format like `amqp://guest:password@localhost:5672/`
The `host` value is the name of the environment variable your deployment uses to get the connection string. This is usually resolved from a `Secret V1` or a `ConfigMap V1` collections. `env` and `envFrom` are both supported. The resolved host should follow a format like `amqp://guest:password@localhost:5672/vhost`

### Authentication Parameters

Expand All @@ -47,7 +47,7 @@ spec:
- type: rabbitmq
metadata:
# Required
host: RabbitMqHost # references a value of format amqp://guest:password@localhost:5672/
host: RabbitMqHost # references a value of format amqp://guest:password@localhost:5672/vhost
queueName: testqueue
queueLength: "20"
```
```