This repository has been archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ansible: Optionally skip ceph configuration on ciao nodes
Ciao requires a ceph cluster to be available for all ciao nodes. The deployment playbook requires that the systadmin provides ceph configuration and secret files in order to configure ceph on all ciao nodes. This changes introduces `skip_ceph` variable which allows the deployment to skip ceph configuration and leave that step to be performed manually by the sysadmin. Fixes #782 Signed-off-by: Alberto Murillo Silva <[email protected]>
- Loading branch information
Alberto Murillo Silva
committed
Nov 15, 2016
1 parent
586d8f5
commit a49770d
Showing
4 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
# Development Mode | ||
This playbooks installs ciao from the latest ciao packaged for your distro. | ||
By default, these playbooks install ciao on production environments from | ||
the latest packages available for each supported distro. | ||
|
||
If you want to try the latest features, there is a way to use this playbook to | ||
deploy ciao from github.com/01org/ciao master branch source code. | ||
However, there are some options that can be specified when running the playbooks | ||
to alter this default behaviour. These options are useful during development and | ||
are described in more detail below: | ||
|
||
Set `ciao_dev = True` in [group_vars/all](../group_vars/all) file or pass the | ||
## Deploy from source code | ||
In order to deploy ciao from the master branch in github set `ciao_dev = True` in [group_vars/all](../group_vars/all) file or pass the | ||
command line argument `--extra-vars "ciao_dev=true"` | ||
|
||
## Skip ceph configuration | ||
If you plan to manually setup ceph in your ciao nodes set `skip_ceph = True` | ||
in [group_vars/all](../group_vars/all) file or pass the command line argument | ||
`--extra-vars "skip_ceph=true"` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,3 +52,4 @@ | |
when: not ciao_dev | ||
|
||
- include: ceph.yml | ||
when: not skip_ceph |