-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
49 lines (37 loc) · 991 Bytes
/
config.yaml
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
# main config file
# extra packages to install for all images
packages:
- sed
- grep
# build packages are installed for the length of the build then removed
build_packages:
openstack:
# image to use, must be Alpine 3.{4,5} based & container python
base_image: python:2.7-alpine3.5
# local: directory
# git: via git
install: local
# directory or url. Assumption is all src is in same base url or directory
# can override on a per service basis
location: openstack
# if OPENSTACK_INSTALL="git", branch to use
branch: newton
# extra packages to install for openstack images
#packages:
#- bash
keystone:
# override openstack location
location: /home/goat/src/openstack/keystone
# extra packages to install for keystone image
packages:
- rsyslog
glance:
# extra packages to install for keystone image
packages:
- bash
install: git
location: https://github.com/openstack/glance.git
branch: stable/newton
services:
- api
- registry