-
Notifications
You must be signed in to change notification settings - Fork 0
/
concourse-deployment.yml
78 lines (78 loc) · 2.06 KB
/
concourse-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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
name: ((concourse_deployment_name))
releases:
- name: concourse
url: https://bosh.io/d/github.com/concourse/concourse?v=2.7.0
sha1: 826932f631d0941b3e4cc9cb19e0017c7f989b56
version: 2.7.0
- name: garden-runc
url: https://bosh.io/d/github.com/cloudfoundry/garden-runc-release?v=1.3.0
sha1: 816044289381e3b7b66dd73fbcb20005594026a3
version: 1.3.0
stemcells:
- alias: trusty
os: ubuntu-trusty
version: latest
instance_groups:
- name: web
instances: 1
vm_type: ((concourse_vm_type))
vm_extensions: [((concourse_web_vm_extensions))]
stemcell: trusty
azs: [z1]
networks: [{name: private}]
jobs:
- name: atc
release: concourse
properties:
external_url: ((concourse_external_url))
basic_auth_username: ((concourse_basic_auth_username))
basic_auth_password: ((concourse_basic_auth_password))
postgresql_database: ((concourse_atc_db_name))
- name: tsa
release: concourse
properties: {}
- name: db
instances: 1
# replace with a VM type from your BOSH Director's cloud config
vm_type: ((concourse_vm_type))
stemcell: trusty
# replace with a disk type from your BOSH Director's cloud config
persistent_disk_type: ((concourse_db_disk_type))
azs: [z1]
networks: [{name: private}]
jobs:
- name: postgresql
release: concourse
properties:
databases:
- name: ((concourse_atc_db_name))
role: ((concourse_atc_db_role))
password: ((concourse_atc_db_password))
- name: worker
instances: 1
# replace with a VM type from your BOSH Director's cloud config
vm_type: ((concourse_vm_type))
vm_extensions: [((concourse_worker_vm_extensions))]
stemcell: trusty
azs: [z1]
networks: [{name: private}]
jobs:
- name: groundcrew
release: concourse
properties: {}
- name: baggageclaim
release: concourse
properties: {}
- name: garden
release: garden-runc
properties:
garden:
listen_network: tcp
listen_address: 0.0.0.0:7777
update:
canaries: 1
max_in_flight: 1
serial: false
canary_watch_time: 1000-60000
update_watch_time: 1000-60000