Skip to content
This repository has been archived by the owner on Oct 10, 2021. It is now read-only.

make is easy to configure this via inventory #7

Merged
merged 4 commits into from
Jul 29, 2019
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
19 changes: 13 additions & 6 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ alpaca_karaf_deploy_dir: "{{ alpaca_karaf_dir }}/deploy"
alpaca_karaf_user: karaf
alpaca_local_mvn_path: /opt/maven/repo

triplestore_namespace: islandora
alpaca_triplestore_base_url: http://localhost:8080/bigdata
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably should be consistent on whether to end with a slash or not. Unless we can adjust to account for either

alpaca_milliner_base_url: http://localhost:8000/milliner
alpaca_gemini_base_url: http://localhost:8000/gemini
alpaca_houdini_base_url: http://localhost:8000/houdini
alpaca_homarus_base_url: http://localhost:8000/homarus

alpaca_settings:
- pid: ca.islandora.alpaca.http.client
settings:
Expand All @@ -33,13 +40,13 @@ alpaca_settings:
settings:
input.stream: activemq:topic:fedora
triplestore.reindex.stream: activemq:queue:triplestore.reindex
triplestore.baseUrl: http://localhost:8080/bigdata/namespace/islandora/sparql
triplestore.baseUrl: "{{ alpaca_triplestore_base_url }}/namespace/{{ triplestore_namespace }}/sparql"
- pid: ca.islandora.alpaca.indexing.triplestore
settings:
error.maxRedeliveries: 10
index.stream: activemq:queue:islandora-indexing-triplestore-index
delete.stream: activemq:queue:islandora-indexing-triplestore-delete
triplestore.baseUrl: http://localhost:8080/bigdata/namespace/islandora/sparql
triplestore.baseUrl: "{{ alpaca_triplestore_base_url }}/namespace/{{ triplestore_namespace }}/sparql"
- pid: ca.islandora.alpaca.indexing.fcrepo
settings:
error.maxRedeliveries: 5
Expand All @@ -48,17 +55,17 @@ alpaca_settings:
media.stream: activemq:queue:islandora-indexing-fcrepo-media
file.stream: activemq:queue:islandora-indexing-fcrepo-file
file.delete.stream: activemq:queue:islandora-indexing-fcrepo-file-delete
milliner.baseUrl: http://localhost:8000/milliner/
gemini.baseUrl: http://localhost:8000/gemini/
milliner.baseUrl: "{{ alpaca_milliner_base_url }}"
gemini.baseUrl: "{{ alpaca_gemini_base_url }}"

alpaca_blueprint_settings:
- pid: ca.islandora.alpaca.connector.houdini
in_stream: activemq:queue:islandora-connector-houdini
derivative_service_url: http://localhost:8000/houdini/convert
derivative_service_url: "{{ alpaca_houdini_base_url }}/convert"
error_max_redeliveries: 5
camel_context_id: IslandoraConnectorHoudini
- pid: ca.islandora.alpaca.connector.homarus
in_stream: activemq:queue:islandora-connector-homarus
derivative_service_url: http://localhost:8000/homarus/convert
derivative_service_url: "{{ alpaca_homarus_base_url }}/convert"
error_max_redeliveries: 5
camel_context_id: IslandoraConnectorHomarus