OSDN Git Service

updates docker roles.
[metasearch/grid-chef-repo.git] / roles / docker-new-repo.rb
1 #
2 # Copyright 2016-2017, whitestar
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 name 'docker-new-repo'
18 description 'Docker CE by the new repository'
19
20 run_list(
21   'role[docker]',
22 )
23
24 #env_run_lists
25
26 default_attributes(
27 )
28
29 override_attributes(
30   'docker-grid' => {
31     'install_flavor' => 'dockerproject',
32     'dockerproject' => {
33       'enable_new_repo' => true,
34     },
35     'compose' => {
36       #'skip_setup' => true,  # default: false
37       'auto_upgrade' => true,  # default: false
38       'release_base_url' => 'https://github.com/docker/compose/releases/download/1.17.1',
39     },
40     'engine' => {
41       'version' => '',  # latest
42       #'skip_setup' => true,  # default: false
43       # new package: `docker-ce`
44       #'version_on_centos' => '17.09.0.ce-1',
45       #'version_on_ubuntu' => '17.05.0~ce-0',
46       'storage-driver_on_centos' => 'overlay',  # defacto: 'devicemapper'
47       'storage-driver_on_ubuntu' => 'overlay2',  # defacto: 'aufs'
48       #'userns-remap' => 'default',
49       #'daemon_extra_options' => [
50         #'-H fd://',
51         #'-H fd:// --bip=192.168.100.1/24 --fixed-cidr=192.168.100.0/24',
52         # for docker >= 1.10, docker-engine >= 1.12 (on rhel family)
53         # '-H fd://' option automatically removed by this cookbook.
54         # See https://github.com/docker/docker/issues/22847
55       #].join(' '), 
56     },
57   },
58 )