
Add install tool The tool aims to make the deploying of stackube as easy as possible. User could set up a whole Stackube cluster automatically by using it. It uses docker images provided by OpenStack Kolla Project to run a containerized OpenStack, and uses kubeadm to deploy kubenetes, then bootstrap the Stackube cluster. Change-Id: I6f18cf4d1a792bc505f955937f000dc0967341ce Implements: blueprint cluster-installation
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"command": "/usr/bin/ceph-mon -d -i __PUBLIC_IP__ --public-addr __PUBLIC_IP__:6789",
|
|
"config_files": [
|
|
{
|
|
"source": "/var/lib/kolla/config_files/ceph.conf",
|
|
"dest": "/etc/ceph/ceph.conf",
|
|
"owner": "ceph",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "/var/lib/kolla/config_files/ceph.client.admin.keyring",
|
|
"dest": "/etc/ceph/ceph.client.admin.keyring",
|
|
"owner": "ceph",
|
|
"perm": "0600",
|
|
"optional": true
|
|
},
|
|
{
|
|
"source": "/var/lib/kolla/config_files/ceph.client.mon.keyring",
|
|
"dest": "/etc/ceph/ceph.client.mon.keyring",
|
|
"owner": "ceph",
|
|
"perm": "0600",
|
|
"optional": true
|
|
},
|
|
{
|
|
"source": "/var/lib/kolla/config_files/ceph.client.radosgw.keyring",
|
|
"dest": "/etc/ceph/ceph.client.radosgw.keyring",
|
|
"owner": "ceph",
|
|
"perm": "0600",
|
|
"optional": true
|
|
},
|
|
{
|
|
"source": "/var/lib/kolla/config_files/ceph.monmap",
|
|
"dest": "/etc/ceph/ceph.monmap",
|
|
"owner": "ceph",
|
|
"perm": "0600",
|
|
"optional": true
|
|
}
|
|
]
|
|
}
|