Skip to content

Instantly share code, notes, and snippets.

@younata
Last active November 8, 2016 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save younata/f975df6b5be7f1b99db6f1463fd38267 to your computer and use it in GitHub Desktop.
Save younata/f975df6b5be7f1b99db6f1463fd38267 to your computer and use it in GitHub Desktop.
ci.younata.com concourse manifest
---
name: concourse
director_uuid: RESULT OF bosh status --uuid
releases:
- name: concourse
version: latest
- name: garden-runc
version: latest
stemcells:
- alias: trusty
os: ubuntu-trusty
version: latest
instance_groups:
- name: web
instances: 1
vm_type: m3.large
vm_extensions:
- lb
stemcell: trusty
azs: [z1]
networks: [{name: private}]
jobs:
- name: atc
release: concourse
properties:
external_url: https://ci.example.com # REPLACE WITH YOUR DOMAIN OR ELB DOMAIN!
basic_auth_username: EXAMPLE_USER
basic_auth_password: EXAMPLE_PASSWORD
tls_cert: CONTENTS_OF_TLS_CERT
tls_key: CONTENT_OF_TLS_KEY
postgresql_database: &atc_db atc
- name: tsa
release: concourse
properties: {}
- name: db
instances: 1
vm_type: m3.large
stemcell: trusty
persistent_disk_type: 50GB
azs: [z1]
networks: [{name: private}]
jobs:
- name: postgresql
release: concourse
properties:
databases:
- name: *atc_db
role: EXAMPLE_ROLE
password: EXAMPLE_PASSWORD
- name: worker
instances: 1
vm_type: m3.medium
vm_extensions:
- 50GB_ephemeral_disk
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment