Skip to content

Commit

Permalink
Make the export service an optional dependency (RedHatInsights#2320)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenneg authored Nov 7, 2023
1 parent b97d343 commit b494546
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .rhcicd/clowdapp-engine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ objects:
- ingress
- notifications-backend
- rbac
- export-service
- notifications-recipients-resolver
optionalDependencies:
- sources-api # https://issues.redhat.com/browse/RHCLOUD-23993
- export-service
database:
sharedDbAppName: notifications-backend
kafkaTopics:
Expand Down
8 changes: 4 additions & 4 deletions engine/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,10 @@ sources.psk=development-value-123
# are using a real Export Service application to test the integration, you will
# need to set this PSK in the PSKS environment variable on that end.
export-service.psk=development-value-123
quarkus.rest-client.export-service.url=${clowder.private-endpoints.export-service-service.url:http://localhost:10010}
quarkus.rest-client.export-service.trust-store=${clowder.private-endpoints.export-service-service.trust-store-path}
quarkus.rest-client.export-service.trust-store-password=${clowder.private-endpoints.export-service-service.trust-store-password}
quarkus.rest-client.export-service.trust-store-type=${clowder.private-endpoints.export-service-service.trust-store-type}
quarkus.rest-client.export-service.url=${clowder.optional-private-endpoints.export-service-service.url:http://localhost:10010}
quarkus.rest-client.export-service.trust-store=${clowder.optional-private-endpoints.export-service-service.trust-store-path}
quarkus.rest-client.export-service.trust-store-password=${clowder.optional-private-endpoints.export-service-service.trust-store-password}
quarkus.rest-client.export-service.trust-store-type=${clowder.optional-private-endpoints.export-service-service.trust-store-type}

# Quarkus caches
quarkus.cache.caffeine.drawer-template.expire-after-write=PT5M
Expand Down

0 comments on commit b494546

Please sign in to comment.