Skip to content

Instantly share code, notes, and snippets.

@mkb
Forked from drnic/manifest.yml
Last active November 29, 2017 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mkb/30c002a6ed185ed1bb100edbfa8b8ac9 to your computer and use it in GitHub Desktop.
Save mkb/30c002a6ed185ed1bb100edbfa8b8ac9 to your computer and use it in GitHub Desktop.
BOSH deployment manifest - AWS
name: redis
director_uuid: 2a535e7b-333c-4830-8042-521eb4c163bc
releases:
- name: redis
version: latest
compilation:
workers: 6
network: redis1
reuse_compilation_vms: true
cloud_properties:
availability_zone: us-west-2a
instance_type: m3.medium
update:
canaries: 1
max_in_flight: 50
canary_watch_time: 1000-100000
update_watch_time: 1000-100000
serial: false
networks:
- name: redis1
type: manual
subnets:
- range: 10.4.1.0/24
gateway: 10.4.1.1
reserved:
- 10.4.1.2 - 10.4.1.3
- 10.4.1.4 - 10.4.1.47
- 10.4.1.65 - 10.4.1.254
static:
- 10.4.1.48 - 10.4.1.56
cloud_properties:
security_groups:
- wide-open
subnet: subnet-afdf33c8
resource_pools:
- name: small_z1
network: redis1
stemcell:
name: bosh-warden-boshlite-ubuntu-trusty-go_agent
version: latest
cloud_properties:
instance_type: m3.medium
availability_zone: us-west-2a
jobs:
- name: redis_leader_z1
templates:
- name: redis
release: redis
instances: 1
resource_pool: small_z1
persistent_disk: 4096
networks:
- name: redis1
properties:
network: redis1
- name: redis_z1
templates:
- name: redis
release: redis
instances: 1
resource_pool: small_z1
persistent_disk: 4096
networks:
- name: redis1
properties:
network: redis1
redis:
master: 0.redis-leader-z1.redis1.redis.microbosh
properties:
redis: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment