-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpost-deployment.yml
35 lines (24 loc) · 957 Bytes
/
post-deployment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Install client? (default: True)
- import_playbook: datawave-client.yml
when: dw_install_web_client == True
tags: [install-client]
# Bounce Accumulo before starting services? (default: True)
- import_playbook: restart-accumulo.yml
when: dw_bounce_accumulo == True
tags: [bounce-accumulo]
# Start ingest? (default: True)
- import_playbook: start-ingest.yml
when: dw_start_ingest == True
tags: [start-ingest]
# Ingest small subset of the TVMAZE corpus? (default: False)
- import_playbook: tvmaze-ingest.yml
when: dw_ingest_tvmaze == True
tags: [ingest-tvmaze]
# Ingest small subset of the Wikipedia corpus? (default: False)
- import_playbook: wikipedia-ingest.yml
when: dw_ingest_wikipedia == True
tags: [ingest-wikipedia]
# Start web? (default: False, unless we've auto-ingested data)
- import_playbook: start-web.yml
when: dw_start_web == True or dw_ingest_tvmaze == True or dw_ingest_wikipedia == True
tags: [start-web]