~ajkavanagh/+junk/useful-things

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
# vim: set ts=2 et:
# deployer bundle for development ('next') charms
# UOSCI relies on this for OS-on-OS deployment testing
openstack-services:
  series: xenial
  services:
    mysql:
      charm: cs:~openstack-charmers/xenial/percona-cluster
      constraints: mem=1G
      options:
        dataset-size: 50%
    keystone:
      charm: cs:~openstack-charmers/xenial/keystone
      constraints: mem=1G
      options:
        admin-password: openstack
        admin-token: ubuntutesting
        preferred-api-version: "2"
    glance:
      charm: local:xenial/glance
      num_units: 3
  relations:
    - [ keystone, mysql ]
    - [ glance, mysql ]
    - [ glance, keystone ]