forked from ceph/ceph-chef
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split cookbook out from Chef App (chef-bcs)
- Loading branch information
Showing
30 changed files
with
158 additions
and
139 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
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,10 +1,17 @@ | ||
ceph-chef | ||
========= | ||
|
||
v1.0.0 (2015-11-17) | ||
NOTE: You can find out how to use this cookbook and see how Bloomberg uses it at: | ||
https://github.com/bloomberg/chef-bcs | ||
|
||
v0.9.0 (2015-11-17) | ||
------------------- | ||
|
||
BETA: Documentation needs more clarity and substance. There are still true OS agnostic testing going on. One major | ||
change coming is an update to the newer Chef style of moving provider/resource into classes in the libraries folder. | ||
This will simplify the cookbook structure going forward. | ||
|
||
- Support for Chef 12.5+ | ||
- Complete Ceph functionality | ||
- Only supports Ceph Hammer and above | ||
- Rados Gateway (RGW) only supports civetweb style (no Apache) | ||
- RADOS Gateway (RGW) only supports civetweb style (no Apache) |
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 |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
# limitations under the License. | ||
# | ||
|
||
include_attribute 'ceph' | ||
include_attribute 'ceph-chef' | ||
|
||
default['ceph']['radosgw']['api_fqdn'] = 'localhost' | ||
default['ceph']['radosgw']['admin_email'] = '[email protected]' | ||
|
@@ -47,18 +47,18 @@ | |
# Important: These values must be present or the creation of the admin user will fail! | ||
default['ceph']['radosgw']['user']['admin']['uid'] = 'radosgw' | ||
default['ceph']['radosgw']['user']['admin']['name'] = 'Admin' | ||
default['ceph']['radosgw']['user']['admin']['access_key'] = ceph_secure_password_alphanum_upper(20) | ||
default['ceph']['radosgw']['user']['admin']['secret'] = ceph_secure_password(40) | ||
default['ceph']['radosgw']['user']['admin']['access_key'] = ceph_chef_secure_password_alphanum_upper(20) | ||
default['ceph']['radosgw']['user']['admin']['secret'] = ceph_chef_secure_password(40) | ||
|
||
# Test user: If you don't want one then set the next line to = '' | ||
default['ceph']['radosgw']['user']['test']['uid'] = 'tester' | ||
default['ceph']['radosgw']['user']['test']['name'] = 'Tester' | ||
default['ceph']['radosgw']['user']['test']['access_key'] = ceph_secure_password_alphanum_upper(20) | ||
default['ceph']['radosgw']['user']['test']['secret'] = ceph_secure_password(40) | ||
default['ceph']['radosgw']['user']['test']['access_key'] = ceph_chef_secure_password_alphanum_upper(20) | ||
default['ceph']['radosgw']['user']['test']['secret'] = ceph_chef_secure_password(40) | ||
default['ceph']['radosgw']['user']['test']['max_buckets'] = 3 | ||
default['ceph']['radosgw']['user']['test']['caps'] = 'usage=read; user=read; bucket=read;' | ||
|
||
default['ceph']['radosgw']['secret_file'] = '/etc/chef/secrets/ceph_rgw' | ||
default['ceph']['radosgw']['secret_file'] = '/etc/chef/secrets/ceph_chef_rgw' | ||
|
||
# MUST be set in the wrapper cookbook or chef-repo like project | ||
default['ceph']['radosgw']['role'] = 'search-ceph-radosgw' | ||
|
Oops, something went wrong.