OSDN Git Service

adds the jenkins-grid cookbook.
[metasearch/grid-chef-repo.git] / cookbooks / jenkins-grid / attributes / default.rb
1 #
2 # Cookbook Name:: jenkins-grid
3 # Attributes:: default
4 #
5 # Copyright 2016, whitestar
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 #default['jenkins-grid']['with_ssl_cert_cookbook'] = false
21 #default['jenkins-grid']['ssl_cert']['common_name'] = node['fqdn']
22 default['jenkins-grid']['docker-compose']['app_dir'] = "#{node['docker-grid']['compose']['app_dir']}/jenkins"
23 default['jenkins-grid']['docker-compose']['jenkins_home'] = {
24   'path' => '/var/lib/jenkins_home',
25   'owner' => 1000,
26 }
27 jenkins_home_path = node['jenkins-grid']['docker-compose']['jenkins_home']['path']
28 default['jenkins-grid']['docker-compose']['config'] = {
29   # Version 2 docker-compose format
30   'version' => '2',
31   'services' => {
32     'jenkins' => {
33       'restart' => 'always',
34       'image' => 'jenkins:2.19.4',
35       #'ports' => [
36       #  '8080:8080',
37       #  '50000:50000',
38       #],
39       #'environment' => {
40       #},
41       'volumes' => [
42         jenkins_home_path.nil? ? nil : "#{jenkins_home_path}:/var/jenkins_home",
43       ],
44     },
45   },
46 }