-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from rjfd/wip-rename-sesboot
Renamed project to ceph-bootstrap
- Loading branch information
Showing
16 changed files
with
83 additions
and
717 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
language: python | ||
python: | ||
- "3.6" | ||
- "3.7" | ||
install: | ||
- pip install -r requirements.txt | ||
script: | ||
- pytest -s --cov -vv | ||
- pylint ceph_bootstrap | ||
- pycodestyle ceph_bootstrap | ||
# linting tests code | ||
- pylint tests | ||
- pycodestyle tests | ||
|
||
after_success: | ||
- codecov |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# sesboot - CLI tool to deploy SES/Ceph clusters <br/> [![Actions Status](https://github.com/rjfd/sesboot/workflows/Linting/badge.svg)](https://github.com/rjfd/sesboot/actions) [![Actions Status](https://github.com/rjfd/sesboot/workflows/Testing/badge.svg)](https://github.com/rjfd/sesboot/actions) | ||
# ceph-bootstrap - CLI tool to deploy SES/Ceph clusters <br/> [![Build Status](https://travis-ci.com/SUSE/ceph-bootstrap.svg?branch=master)](https://travis-ci.com/SUSE/ceph-bootstrap) [![codecov](https://codecov.io/gh/SUSE/ceph-bootstrap/branch/master/graph/badge.svg)](https://codecov.io/gh/SUSE/ceph-bootstrap) | ||
|
||
`sesboot` is a CLI tool to deploy Ceph clusters (both the upstream and SUSE | ||
downstream versions). | ||
`ceph-bootstrap` is a CLI tool to deploy Ceph clusters (both the upstream and SUSE | ||
downstream versions) using Salt. |
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
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,8 @@ | ||
class SesBootException(Exception): | ||
class CephBootstrapException(Exception): | ||
pass | ||
|
||
|
||
class SesNodeHasRolesException(SesBootException): | ||
class SesNodeHasRolesException(CephBootstrapException): | ||
def __init__(self, minion_id, roles): | ||
super(SesNodeHasRolesException, self).__init__( | ||
"Cannot remove host '{}' because it has roles defined: {}".format(minion_id, roles)) |
File renamed without changes.
File renamed without changes.
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,4 +1,5 @@ | ||
. | ||
codecov==2.0.15 | ||
mock==3.0.5 | ||
pycodestyle==2.5.0 | ||
pyfakefs==3.7 | ||
|
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
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