From 4107122887ee6d09dfcf92b349d039e6883d22e0 Mon Sep 17 00:00:00 2001 From: Greg Meyer Date: Fri, 2 Jun 2023 13:33:03 -0500 Subject: [PATCH] Fixing subpath in WFD UI application's workload.yaml file. (#295) * Fixing subpath in WFD UI application's workload.yaml file. Addressing issue #293 * Disabling RabbitMQ when using alternative msg systems. --------- Co-authored-by: gm2552 --- .../src/main/resources/application.yaml | 18 +++++++++++++++++- .../src/main/resources/application.yml | 18 +++++++++++++++++- .../src/main/resources/application.yml | 18 +++++++++++++++++- .../src/main/resources/application.yml | 18 +++++++++++++++++- .../where-for-dinner-ui/config/workload.yaml | 2 +- 5 files changed, 69 insertions(+), 5 deletions(-) diff --git a/where-for-dinner/where-for-dinner-availability/src/main/resources/application.yaml b/where-for-dinner/where-for-dinner-availability/src/main/resources/application.yaml index 10c10ec84..2e23b40f7 100644 --- a/where-for-dinner/where-for-dinner-availability/src/main/resources/application.yaml +++ b/where-for-dinner/where-for-dinner-availability/src/main/resources/application.yaml @@ -60,6 +60,14 @@ spring: stream: defaultBinder: kafka + autoconfigure: + exclude: org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration + +management: + health: + rabbit: + enabled: false + --- spring: @@ -67,5 +75,13 @@ spring: cloud: stream: - defaultBinder: kinesis + defaultBinder: kinesis + + autoconfigure: + exclude: org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration + +management: + health: + rabbit: + enabled: false \ No newline at end of file diff --git a/where-for-dinner/where-for-dinner-notify/src/main/resources/application.yml b/where-for-dinner/where-for-dinner-notify/src/main/resources/application.yml index 3c0347668..31892524b 100644 --- a/where-for-dinner/where-for-dinner-notify/src/main/resources/application.yml +++ b/where-for-dinner/where-for-dinner-notify/src/main/resources/application.yml @@ -32,6 +32,14 @@ spring: stream: defaultBinder: kafka + autoconfigure: + exclude: org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration + +management: + health: + rabbit: + enabled: false + --- spring: @@ -39,4 +47,12 @@ spring: cloud: stream: - defaultBinder: kinesis \ No newline at end of file + defaultBinder: kinesis + + autoconfigure: + exclude: org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration + +management: + health: + rabbit: + enabled: false \ No newline at end of file diff --git a/where-for-dinner/where-for-dinner-search-proc/src/main/resources/application.yml b/where-for-dinner/where-for-dinner-search-proc/src/main/resources/application.yml index 932a734ac..2608e4fb2 100644 --- a/where-for-dinner/where-for-dinner-search-proc/src/main/resources/application.yml +++ b/where-for-dinner/where-for-dinner-search-proc/src/main/resources/application.yml @@ -144,6 +144,14 @@ spring: stream: defaultBinder: kafka + autoconfigure: + exclude: org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration + +management: + health: + rabbit: + enabled: false + --- spring: @@ -151,4 +159,12 @@ spring: cloud: stream: - defaultBinder: kinesis \ No newline at end of file + defaultBinder: kinesis + + autoconfigure: + exclude: org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration + +management: + health: + rabbit: + enabled: false \ No newline at end of file diff --git a/where-for-dinner/where-for-dinner-search/src/main/resources/application.yml b/where-for-dinner/where-for-dinner-search/src/main/resources/application.yml index 204ecf942..f89e86e9f 100644 --- a/where-for-dinner/where-for-dinner-search/src/main/resources/application.yml +++ b/where-for-dinner/where-for-dinner-search/src/main/resources/application.yml @@ -61,6 +61,14 @@ spring: stream: defaultBinder: kafka + autoconfigure: + exclude: org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration + +management: + health: + rabbit: + enabled: false + --- spring: @@ -68,5 +76,13 @@ spring: cloud: stream: - defaultBinder: kinesis + defaultBinder: kinesis + + autoconfigure: + exclude: org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration + +management: + health: + rabbit: + enabled: false \ No newline at end of file diff --git a/where-for-dinner/where-for-dinner-ui/config/workload.yaml b/where-for-dinner/where-for-dinner-ui/config/workload.yaml index e57b477c0..b51462a54 100644 --- a/where-for-dinner/where-for-dinner-ui/config/workload.yaml +++ b/where-for-dinner/where-for-dinner-ui/config/workload.yaml @@ -32,4 +32,4 @@ spec: url: ref: branch: main - subPath: where-for-dinner-notify + subPath: where-for-dinner-ui