This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
forked from pivotal-cf/docs-concourse-olm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcourse-TEMPLATE.yml
100 lines (91 loc) · 2.32 KB
/
concourse-TEMPLATE.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
---
name: concourse
releases:
- name: concourse
version: latest
- name: garden-runc
version: latest
stemcells:
- alias: trusty
os: ubuntu-trusty
version: latest
instance_groups:
- name: web
instances: NUMBER-OF-INSTANCES
# replace with a VM type from your BOSH Director's cloud config
vm_type: large
stemcell: trusty
azs: [z1]
networks:
- name: default
default: [dns, gateway]
- name: vip
static_ips: [((external_ip))]
# vm_extensions:
# - concourse
jobs:
- name: atc
release: concourse
properties:
# replace with your CI's externally reachable URL, e.g. https://ci.concourse.com
# external_url: ((EXTERNAL-URL))
# Basic Auth is not recommended; please replace with the admin team authentication method of your choice
basic_auth_username: admin
basic_auth_password: admin
# replace with your SSL cert and key
#tls_cert: YOUR-TLS-CERT
#tls_key: YOUR-TLS-CERT-KEY
postgresql_database: &atc_db atc
- name: tsa
release: concourse
properties: {}
- name: db
instances: NUMBER-OF-INSTANCES
# replace with a VM type from your BOSH Director's cloud config
vm_type: large
stemcell: trusty
# replace with a disk type from your BOSH Director's cloud config
persistent_disk_type: large
azs: [z1]
networks:
- name: default
jobs:
- name: postgresql
release: concourse
properties:
databases:
- name: *atc_db
# make up a role and password
role: YOUR-CUSTOM-ROLE
password: YOUR-ROLE-PASSWORD
- name: worker
instances: NUMBER-OF-INSTANCES
# replace with a VM type from your BOSH Director's cloud config
vm_type: large
# vm_extensions:
# # replace with a VM extension from your BOSH Director's cloud config that will attach
# # sufficient ephemeral storage to VMs in this instance group.
# - concourse
stemcell: trusty
azs: [z1]
networks:
- name: default
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: YOUR-CANARIES
max_in_flight: YOUR-MAX-IN-FLIGHT-LIMIT
serial: false
canary_watch_time: 1000-60000
update_watch_time: 1000-60000