Skip to content

Commit

Permalink
Merge pull request #394 from dshulyak/docs/plan
Browse files Browse the repository at this point in the history
Describe procedure of building deployment plan in docs
  • Loading branch information
pigmej committed Nov 30, 2015
2 parents 4f2154e + 9ec2662 commit 02f9a59
Show file tree
Hide file tree
Showing 2 changed files with 111 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Contents:
source/resource
source/orchestration
source/examples
source/deployment_plan


Indices and tables
Expand Down
110 changes: 110 additions & 0 deletions docs/source/deployment_plan.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
.. _deployment_plan:

Preparing deployment plan
=========================

Solar allows to make transitions between different versions of infrastructure
based on changes found by solar control plane and configured events between this changes.

Required information
----------------------
Inputs
TODO link to the page with inputs

Orchestration
TODO link to the page with orchestration API details

Changes
--------

By changes in solar we understand everything that is explicitly made by
user (human/program). Examples of changes are:
- create resource
- remove resource
- update value manually
- update value using hierarchy

Staged changes
---------------

On demand solar runs procedure that will find all changed from last deployment
resources, and using transitions from solar state machine will determine
list of actions.

This procedure performed by ::

solar changes stage -d

It prints information like ::

log task=openrc_file.run uid=e852455d-49d9-41f1-b49c-4640e2e19944
++ ip: 10.0.0.3
++ location_id: 694b35afa622da857f95e14a21599d81
++ keystone_port: 35357
++ transports_id: abc7745f2ad63709b5845cecfa759ff5
++ keystone_host: 10.0.0.3
++ password: admin
++ user_name: admin
++ tenant: admin
log task=neutron_db.run uid=95cac02b-01d0-4e2f-adb9-4205a2cf6dfb
++ login_port: 3306
++ encoding: utf8
++ login_user: root
++ login_password: mariadb
++ transports_id: abc7745f2ad63709b5845cecfa759ff5
++ db_name: neutron_db
++ db_host: 10.0.0.3
++ ip: 10.0.0.3
++ collation: utf8_general_ci
++ location_id: 694b35afa622da857f95e14a21599d81

At this point information is stored as a list, and doensnt know anything
about dependencies between found changes.

Events usage
-------------

For events definition see :ref:`res-event-term`.

Events used during this procedure to insert dependencies between found changes,
and add new actions that are reactions for changes.

Example of dependency between changes would be *nova service* that depends
on successful creation of *database*.

And for removal we might add dependencies that will allow reverse
order, e.g when removing *nova service* and *database*, *database* will be
removed only after successfull *nova service*.
Can be specified as ::

Dependency database1.run -> nova1.run
Dependency nova1.remove -> database1.remove

Reaction allows to construct more advacned worklows that will take into
account not only changes, but also arbitrary actions for resources in solar.

Good example of usage is provisioning procedure, where reboot must be
done only after node is provisioned, and dnsmasq configuration changes to
reflect that that node is now using statically allocated address.
We can specify such ordering as ::

React node1.run -> node1.reboot
React node1.run -> dnsmasq1.change_ip
Dependency dnsmasq1.change_ip -> node1.reboot

Deployment plan construction
-----------------------------

Using list of staged changes and graph events we can proceed with construction
of deployment plan for current version of infrastructure ::

solar changes process

After this command plan can be viewed by ::

# graphviz representataion
solar orch dg last

# text report
solar orch report last

0 comments on commit 02f9a59

Please sign in to comment.