forked from dpc-sdp/ripple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lagoon.yml
42 lines (40 loc) · 1.17 KB
/
.lagoon.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
36
37
38
39
40
41
42
docker-compose-yaml: docker-compose.yml
tasks:
post-rollout:
- run:
name: Post deployed URL to JIRA
command: |
if [[ "$LAGOON_PR_HEAD_BRANCH" != "production" ]]; then
. /app/scripts/jira-post-comment.sh $JIRA_ENDPOINT $JIRA_USERNAME $JIRA_PASSWORD $LAGOON_PR_HEAD_BRANCH $LAGOON_ROUTES "$LAGOON_PR_TITLE"
fi
service: app
- run:
name: Trigger Nightwatch E2E Tests CI
command: |-
. /app/scripts/trigger-e2e.sh
service: app
environments:
master:
routes:
- storybook:
- "www.ripple.sdp.vic.gov.au":
tls-acme: 'false'
insecure: Allow
hsts: max-age=31536000
- app:
- "www.master.reference.sdp.vic.gov.au":
tls-acme: 'false'
insecure: Allow
hsts: max-age=31536000
develop:
routes:
- storybook:
- "www.develop.ripple.sdp.vic.gov.au":
tls-acme: 'false'
insecure: Allow
hsts: max-age=31536000
- app:
- "www.develop.reference.sdp.vic.gov.au":
tls-acme: 'false'
insecure: Allow
hsts: max-age=31536000