The core API implementation for Daisycloud OpenStack installer.
Go to file
Zhijiang Hu 49b9707895 Rename ironic-discoverd to daisy-discoverd
Historically, Daisy's discoverd is a fork from ironic-discoverd
without changing package name. This has problems:
1) When user want to install daisy but there is already a
ironic-discoverd which from OpenStack, then daisy's discoverd
will not be installed due to already existed.
2) When user already installed Daisy's discoverd and later do
yum update, then daisy's discoverd will be replaced by
ironic-discoverd which from OpenStack.

Both scenarios above will results in Daisy does not work. So
This PS changes ironic-discoverd to daisy-discoverd.

Change-Id: Ic505feb12271dd87e5781da28f79ca604d49374e
Signed-off-by: Zhijiang Hu <hu.zhijiang@zte.com.cn>
2017-08-04 17:41:40 +08:00
backend fix the docker version to 17.05 2017-06-29 12:36:25 +00:00
code Rename ironic-discoverd to daisy-discoverd 2017-08-04 17:41:40 +08:00
doc Add doc for diasy call graph among modules. 2016-08-05 06:38:08 +00:00
make Rename ironic-discoverd to daisy-discoverd 2017-08-04 17:41:40 +08:00
rpm Rename ironic-discoverd to daisy-discoverd 2017-08-04 17:41:40 +08:00
test/tempest Rename ironic-discoverd to daisy-discoverd 2017-08-04 17:41:40 +08:00
tools Rename ironic-discoverd to daisy-discoverd 2017-08-04 17:41:40 +08:00
.gitignore Add Copyright to the diff-coverage tool 2016-12-27 03:49:31 -05:00
.gitreview Added .gitreview 2016-03-29 07:52:50 +00:00
diff_coverage.py Add Copyright to the diff-coverage tool 2016-12-27 03:49:31 -05:00
patch.py Add coverage verify script 2016-12-23 09:00:01 -05:00
README.md Solve H102 "Apache 2.0 license header not found" error 2017-05-24 06:02:33 -04:00

[toc]

Daisy(Openstack project name: daisycloud-core)

Daisy provides automated deployment and management of OpenStack and other distributed systems.

Website

http://www.daisycloud.org

Code Layout

  • code/daisy: core logic code.
  • code/daisyclient: command line interface code.
  • code/horizon: web interface code.

Build Daisy artifact

# cd tools
# ./daisy-compile-rpm.sh
# cd ../make
# make allrpm

The artifacts will be at target/el7/noarch/, with name such as installdaisy_el7_noarch.bin.

Install Daisy

# cd target/el7/noarch/
# ./installdaisy_el7_noarch.bin
Verifying archive integrity... All good.
Uncompressing daisy...........................................................

=================================
    DAISY Installation Wizard
=================================
1. install
2. upgrade
3. clean
4. help
5. exit

Please select an operation: 1

Test Daisy

TODO

  • : separate daisyclient as another project;
  • : separate horizon as another project;