From bef498bb1f69970039b21923f9cb666fdefee5f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grega=20Vrban=C4=8Di=C4=8D?= Date: Thu, 7 Feb 2019 09:11:25 +0100 Subject: [PATCH] fix missing nodename issue. --- public/v1/apps/rabbitmq.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/public/v1/apps/rabbitmq.json b/public/v1/apps/rabbitmq.json index 9119442..ba0cc07 100644 --- a/public/v1/apps/rabbitmq.json +++ b/public/v1/apps/rabbitmq.json @@ -13,7 +13,8 @@ "restart": "always", "environment": { "RABBITMQ_DEFAULT_USER": "$$cap_rabbitmq_user", - "RABBITMQ_DEFAULT_PASS": "$$cap_rabbitmq_password" + "RABBITMQ_DEFAULT_PASS": "$$cap_rabbitmq_password", + "RABBITMQ_NODENAME": "$$cap_rabbitmq_nodename" } } } @@ -40,7 +41,13 @@ "label": "RabbitMQ Default Password", "description": "", "validRegex": "/.{1,}/" + }, + { + "id": "$$cap_rabbitmq_nodename", + "label": "RabbitMQ Nodename", + "description": "Nodename is appended to the end of the database directory.", + "defaultValue": "rabbit@localhost", + "validRegex": "/.{1,}/" } ] - }