-
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.
Merge pull request #13 from redBorder/development
Release 1.0.7
- Loading branch information
Showing
11 changed files
with
188 additions
and
192 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,14 +1,25 @@ | ||
# Chef-server Cookbook | ||
# cookbook-chef-server | ||
[![Build Status][build-shield]][build-url] | ||
[![Linters][linters-shield]][linters-url] | ||
[![License][license-shield]][license-url] | ||
|
||
cookbook to install and configure redborder Chef-server | ||
<!-- Badges --> | ||
[build-shield]: https://github.com/redBorder/cookbook-chef-server/actions/workflows/rpm.yml/badge.svg?branch=master | ||
[build-url]: https://github.com/redBorder/cookbook-chef-server/actions/workflows/rpm.yml?query=branch%3Amaster | ||
[linters-shield]: https://github.com/redBorder/cookbook-chef-server/actions/workflows/lint.yml/badge.svg?event=push | ||
[linters-url]: https://github.com/redBorder/cookbook-chef-server/actions/workflows/lint.yml | ||
[license-shield]: https://img.shields.io/badge/license-AGPLv3-blue.svg | ||
[license-url]: https://github.com/cookbook-chef-server/blob/HEAD/LICENSE | ||
|
||
Chef cookbook to install and configure redborder Chef-server | ||
|
||
### Platforms | ||
|
||
- Rocky Linux 9 | ||
|
||
### Chef | ||
|
||
- Chef 12.0 or later | ||
- Chef 15.7.0 or later | ||
|
||
## Contributing | ||
|
||
|
@@ -20,7 +31,5 @@ cookbook to install and configure redborder Chef-server | |
6. Submit a Pull Request using Github | ||
|
||
## License | ||
GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 | ||
|
||
## Authors | ||
Authors: Enrique Jimenez <[email protected]> | ||
GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 |
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,33 +1,11 @@ | ||
default["chef-server"]["services"]["chef"] = true | ||
default["chef-server"]["services"]["nginx"] = true | ||
default["chef-server"]["services"]["postgresql"] = true | ||
|
||
default["chef-server"]["chef_middleware"] = [ | ||
"bookshelf", | ||
"oc_bifrost", | ||
"oc_id", | ||
"opscode-erchef", | ||
"redis_lb", | ||
"opensearch" | ||
] | ||
|
||
|
||
|
||
|
||
default["chef-server"]["services_list"] = [ | ||
"postgresql", | ||
"nginx", | ||
"bookshelf", | ||
"oc_bifrost", | ||
"oc_id", | ||
"opscode-erchef", | ||
"redis_lb", | ||
"opensearch" | ||
] | ||
|
||
default["chef-server"]["services_dir"] = "/opt/opscode/service" | ||
|
||
#flags | ||
default["chef-server"]["installed"] = false | ||
default["chef-server"]["datastore_configured"] = false | ||
default["chef-server"]["registered"] = false | ||
default['chef-server']['services']['chef'] = true | ||
default['chef-server']['services']['nginx'] = true | ||
default['chef-server']['services']['postgresql'] = true | ||
default['chef-server']['chef_middleware'] = %w(bookshelf oc_bifrost oc_id opscode-erchef redis_lb opensearch) | ||
default['chef-server']['services_list'] = %w(postgresql nginx bookshelf oc_bifrost oc_id opscode-erchef redis_lb opensearch) | ||
default['chef-server']['services_dir'] = '/opt/opscode/service' | ||
|
||
# flags | ||
default['chef-server']['installed'] = false | ||
default['chef-server']['datastore_configured'] = false | ||
default['chef-server']['registered'] = false |
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,6 @@ | ||
name 'chef-server' | ||
maintainer 'Redborder' | ||
maintainer_email 'ejimenez@redborder.com' | ||
license 'All rights reserved' | ||
maintainer 'Eneo Tecnología S.L.' | ||
maintainer_email 'git@redborder.com' | ||
license 'AGPL-3.0' | ||
description 'Installs/Configures chef-server' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '1.0.6' | ||
|
||
version '1.0.7' |
Oops, something went wrong.