~openstack-charmers-next/charms/xenial/nova-cloud-controller/trunk

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Corey Bryant
  • Date: 2016-06-20 12:37:43 UTC
  • Revision ID: corey.bryant@canonical.com-20160620123743-a92ewktt5kkaru26
Add defaults for openstack-origin-git config option

openstack-origin-git currently only supports YAML that specifies
the git repositories to deploy from.

This adds support for default openstack-origin-git values. The
default values supported are: icehouse, kilo, liberty, mitaka,
and master.  For example: openstack-origin-git=master

Change-Id: I6b737272deed067c2f71dbd36b201aea884265ee

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    default:
46
46
    type: string
47
47
    description: |
48
 
      Specifies a YAML-formatted dictionary listing the git
49
 
      repositories and branches from which to install OpenStack and
50
 
      its dependencies.
 
48
      Specifies a default OpenStack release name, or a YAML dictionary
 
49
      listing the git repositories to install from.
 
50
 
 
51
      The default Openstack release name may be one of the following, where
 
52
      the corresponding OpenStack github branch will be used:
 
53
        * icehouse
 
54
        * kilo
 
55
        * liberty
 
56
        * mitaka
 
57
        * master
 
58
 
 
59
      The YAML must minimally include requirements, neutron, and nova
 
60
      repositories, and may also include repositories for other dependencies:
 
61
        repositories:
 
62
        - {name: requirements,
 
63
           repository: 'git://github.com/openstack/requirements',
 
64
           branch: master}
 
65
        - {name: neutron,
 
66
           repository: 'git://github.com/openstack/neutron',
 
67
           branch: master}
 
68
        - {name: nova,
 
69
           repository: 'git://github.com/openstack/nova',
 
70
           branch: master}
51
71
 
52
72
      Note that the installed config files will be determined based on
53
73
      the OpenStack release of the openstack-origin option.
54
 
 
55
 
      For more details see README.md.
56
74
  rabbit-user:
57
75
    default: nova
58
76
    type: string