Skip to content

Commit

Permalink
Flysystem Install (#72)
Browse files Browse the repository at this point in the history
* Workaround for content_translation columns not getting added when importing config

* First pass at flysystem install

* Installing now

* Adding alpaca config and removing temp modules for composer and drush

* Bumping crayfish external role version in requirements.yml
  • Loading branch information
dannylamb authored and whikloj committed Aug 17, 2018
1 parent 15bd883 commit 1663b20
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
21 changes: 16 additions & 5 deletions inventory/vagrant/group_vars/karaf.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
---

alpaca_settings:
- pid: ca.islandora.alpaca.http.client
settings:
token.value: islandora
- pid: ca.islandora.alpaca.connector.broadcast
settings:
input.stream: activemq:queue:islandora-connector-broadcast
- pid: ca.islandora.alpaca.indexing.triplestore
settings:
error.maxRedeliveries: 10
input.stream: activemq:queue:islandora-indexing-triplestore
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
- pid: ca.islandora.alpaca.indexing.fcrepo
settings:
error.maxRedeliveries: 10
content.stream: activemq:queue:islandora-indexing-fcrepo-content
file.stream: activemq:queue:islandora-indexing-fcrepo-file
error.maxRedeliveries: 5
node.stream: activemq:queue:islandora-indexing-fcrepo-content
node.delete.stream: activemq:queue:islandora-indexing-fcrepo-delete
media.stream: activemq:queue:islandora-indexing-fcrepo-media
delete.stream: activemq:queue:islandora-indexing-fcrepo-delete
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/
- pid: ca.islandora.alpaca.connector.houdini
settings:
error.maxRedeliveries: 10
in.stream: activemq:queue:islandora-connector-houdini
houdini.convert.url: http://localhost:8000/houdini/convert
2 changes: 2 additions & 0 deletions inventory/vagrant/group_vars/tomcat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,5 @@ cantaloupe_processor_jp2: OpenJpegProcessor
cantaloupe_cache_source: FilesystemCache
cantaloupe_cache_derivative: FilesystemCache
cantaloupe_create_FilesystemCache_dir: yes
cantaloupe_resolver_static: HttpResolver
cantaloupe_HttpResolver_BasicLookupStrategy_url_prefix: http://localhost:8000/
2 changes: 1 addition & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

- src: https://github.com/Islandora-Devops/ansible-role-crayfish
name: Islandora-Devops.crayfish
version: 0.0.3
version: 0.0.4

- src: https://github.com/Islandora-Devops/ansible-role-drupal-openseadragon
name: Islandora-Devops.drupal-openseadragon
Expand Down
8 changes: 8 additions & 0 deletions roles/internal/webserver-app/tasks/drupal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
'{{ host }}',
{% endfor %}
);
$settings['flysystem'] = [
'fedora' => [
'driver' => 'fedora',
'config' => [
'root' => 'http://localhost:8080/fcrepo/rest/',
],
],
];
path: "{{ drupal_trusted_hosts_file }}"
marker: // {mark} ANSIBLE MANAGED BLOCK

Expand Down

0 comments on commit 1663b20

Please sign in to comment.