cookbook 'jenkins-grid', '= 0.2.2'
jenkins-grid (10) Versions 0.2.2 Follow0
Installs/Configures jenkins-grid
cookbook 'jenkins-grid', '= 0.2.2', :supermarket
knife supermarket install jenkins-grid
knife supermarket download jenkins-grid
jenkins-grid Cookbook
This cookbook sets up a Jenkins service.
Contents
Requirements
platforms
- none.
packages
- none.
Attributes
Key | Type | Description, example | Default |
---|---|---|---|
['jenkins-grid']['with_ssl_cert_cookbook'] |
Boolean | If this attribute is true, node['jenkins-grid']['docker-compose']['config'] are are overridden by the following common_name attributes. |
false |
['jenkins-grid']['ssl_cert']['common_name'] |
String | Jenkins server common name for TLS | node['fqdn'] |
['jenkins-grid']['num_executors'] |
Integer | Number of executors. | 2 |
['jenkins-grid']['log.properties'] |
Hash | java.util.logging configurations. | See attributes/default.rb
|
['jenkins-grid']['docker-compose']['app_dir'] |
String | "#{node['docker-grid']['compose']['app_dir']}/jenkins" |
|
['jenkins-grid']['docker-compose']['jenkins_home']['path'] |
String | Path string or nil (unset). | '/var/lib/jenkins_home' |
['jenkins-grid']['docker-compose']['jenkins_home']['owner'] |
String, Integer | Jenkins owner user name or uid. | 1000 |
['jenkins-grid']['docker-compose']['config'] |
Hash |
docker-compose.yml configurations. |
See attributes/default.rb
|
Usage
Recipes
jenkins-grid::default
This recipe does nothing.
jenkins-grid::docker-compose
This recipe generates a docker-compose.yml for the Jenkins CI service.
Role Examples
roles/jenkins.rb
name 'jenkins' description 'Jenkins' run_list( 'role[docker]', 'recipe[jenkins-grid::docker-compose]', ) #env_run_lists() #default_attributes() override_attributes( 'jenkins-grid' => { 'docker-compose' => { 'config' => { # Version 2 docker-compose format 'version' => '2', 'services' => { 'jenkins' => { 'restart' => 'always', 'image' => 'jenkins:2.19.4', 'ports' => [ '8080:8080', '50000:50000', ], #'environment' => { #}, #'volumes' => [ # # set automatically, if the node['jenkins-grid']['docker-compose']['jenkins_home']['path'] is not nil. # "#{node['jenkins-grid']['docker-compose']['jenkins_home']['path']}:/var/jenkins_home", #], }, }, }, }, }, )
roles/jenkins-with-ssl-cert.rb
name 'jenkins-with-ssl-cert' description 'Jenkins setup with ssl_cert cookbook' run_list( 'recipe[ssl_cert::server_key_pairs]', 'role[docker]', 'recipe[jenkins-grid::docker-compose]', ) #env_run_lists() #default_attributes() jenkins_cn = 'jenkins.io.example.com' override_attributes( 'jenkins-grid' => { 'with_ssl_cert_cookbook' => true, 'ssl_cert' => { 'common_name' => jenkins_cn, }, 'docker-compose' => { 'config' => { # Version 2 docker-compose format 'version' => '2', 'services' => { 'jenkins' => { 'restart' => 'always', 'image' => 'jenkins:2.19.4', 'expose' => [ '8083', # for https ], 'ports' => [ '8083:8083', '50000:50000', ], 'environment' => { 'JENKINS_OPTS' => [ '--httpPort=-1 --httpsPort=8083', # These options will be set by the jenkins-grid::docker-compose recipe automatically. #'--httpsCertificate=/var/lib/jenkins/server.crt', #'--httpsPrivateKey=/var/lib/jenkins/server.key', ].join(' '), }, # These volumes will be set by the jenkins-grid::docker-compose recipe automatically. #'volumes' => [ # "#{node['jenkins-grid']['docker-compose']['jenkins_home']['path']}:/var/jenkins_home", # "#{server_cert_path(node['jenkins-grid']['ssl_cert']['common_name'])}:/var/lib/jenkins/server.crt:ro", # "#{node['jenkins-grid']['docker-compose']['app_dir']}/certs/server.key:/var/lib/jenkins/server.key:ro", #], }, }, }, }, }, 'ssl_cert' => { 'common_names' => [ jenkins_cn, ], } )
SSL server keys and certificates management by ssl_cert cookbook
- create vault items.
$ ruby -rjson -e 'puts JSON.generate({"private" => File.read("jenkins_io_example_com.prod.key")})' \ > > ~/tmp/jenkins_io_example_com.prod.key.json $ knife vault create ssl_server_keys jenkins.io.example.com.prod \ > --json ~/tmp/jenkins_io_example_com.prod.key.json $ ruby -rjson -e 'puts JSON.generate({"public" => File.read("jenkins_io_example_com.prod.crt")})' \ > > ~/tmp/jenkins_io_example_com.prod.crt.json $ knife vault create ssl_server_certs jenkins.io.example.com.prod \ > --json ~/tmp/jenkins_io_example_com.prod.crt.json
- grant reference permission to the Jenkins host
$ knife vault update ssl_server_keys jenkins.io.example.com.prod -S 'name:jenkins-host.example.com' $ knife vault update ssl_server_certs jenkins.io.example.com.prod -S 'name:jenkins-host.example.com'
- modify run_list and attributes
run_list( 'recipe[ssl_cert::server_key_pairs]', 'recipe[jenkins-grid::docker-compose]', ) override_attributes( 'ssl_cert' => { 'common_names' => [ 'jenkins.io.example.com', ], }, 'jenkins-grid' => { 'with_ssl_cert_cookbook' => true, 'ssl_cert' => { 'common_name' => 'jenkins.io.example.com', }, # ... }, )
License and Authors
- Author:: whitestar at osdn.jp
Copyright 2016-2017, whitestar Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Dependent cookbooks
docker-grid >= 0.3.6 |
ssl_cert >= 0.3.3 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
jenkins-grid CHANGELOG
0.2.2
- Bug fix: Docker volumes management.
- revises documents.
0.2.1
- bug fix.
0.2.0
- adds
log.properties
configurations. - adds
executors.groovy
configurations. - adds linkage with the
ssl_cert
cookbook for TLS setup.
0.1.0
- Initial release of jenkins-grid
Collaborator Number Metric
0.2.2 failed this metric
Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Foodcritic Metric
0.2.2 passed this metric
License Metric
0.2.2 passed this metric
0.2.2 failed this metric
0.2.2 passed this metric
License Metric
0.2.2 passed this metric
0.2.2 passed this metric