OSDN Git Service

adds the Docker project new repository support.
[metasearch/grid-chef-repo.git] / roles / docker4latest_ubuntu.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 'docker4latest_ubuntu'
18 description 'Docker for the latest Ubuntu'
19
20 run_list(
21   'role[docker]',
22 )
23
24 #env_run_lists()
25
26 #default_attributes()
27
28 override_attributes(
29   'docker-grid' => {
30     'install_flavor' => 'dockerproject',
31     'dockerproject' => {
32       'enable_new_repo' => true,
33       'package_name' => 'docker-ce',  # new package name.
34     },
35     # install the package for the newer distribution of ubuntu.
36     'apt_repo' => {
37       # new repo.
38       #'override_apt_line' => 'deb [arch=amd64] https://download.docker.com/linux/ubuntu artful stable',  # not active yet
39       'override_apt_line' => 'deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable',
40       # old repo.
41       #'override_apt_line' => 'deb https://apt.dockerproject.org/repo ubuntu-zesty main',
42       #'override_apt_line' => 'deb https://apt.dockerproject.org/repo ubuntu-xenial main',
43     },
44     'engine' => {
45       # new package: `docker-ce``
46       'version' => '17.09.0~ce-0~ubuntu',
47       #'version' => '17.06.2~ce-0~ubuntu',
48       # old package: `docker-engine``
49       #'version' => '17.05.0~ce-0~ubuntu-zesty',
50       #'version' => '17.03.1~ce-0~ubuntu-yakkety',
51       #'version' => '1.12.3-0~xenial',
52       'storage-driver_on_ubuntu' => 'overlay2',  # default: aufs
53       #'daemon_extra_options' => [
54         #'-H fd:// --bip=192.168.100.1/24 --fixed-cidr=192.168.100.0/24',
55         # for docker >= 1.10, docker-engine >= 1.12 (on rhel family)
56         # '-H fd://' option automatically removed by this cookbook.
57         # See https://github.com/docker/docker/issues/22847
58       #].join(' '), 
59       #'users_allow' => [
60       #],
61     },
62   },
63 )