From 4e4e5bae33c8e7e6d94c83569150fbe52d1ccdbb Mon Sep 17 00:00:00 2001 From: PixelRobots Date: Sun, 19 Jan 2020 16:13:18 +0000 Subject: [PATCH] Added in vhost to end of connection strings This should make it clearer when using vhosts. --- content/scalers/rabbitmq-queue.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/scalers/rabbitmq-queue.md b/content/scalers/rabbitmq-queue.md index e5c7d0909..421613593 100644 --- a/content/scalers/rabbitmq-queue.md +++ b/content/scalers/rabbitmq-queue.md @@ -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 @@ -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" -``` \ No newline at end of file +```