Skip to content

Commit

Permalink
bumping version to 17.09.0
Browse files Browse the repository at this point in the history
Signed-off-by: Chase Bolt <[email protected]>
  • Loading branch information
chasebolt committed Oct 5, 2017
1 parent 3d11645 commit 2dd4255
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 24 deletions.
12 changes: 6 additions & 6 deletions .kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ suites:
run_list:
- recipe[docker_test::installation_package]

- name: installation_package-17062
- name: installation_package-17090
includes: [
'centos-7', # for dokken
'debian-7', # for dokken
Expand All @@ -145,21 +145,21 @@ suites:
]
attributes:
docker:
version: '17.06.2'
version: '17.09.0'
run_list:
- recipe[docker_test::installation_package]

#######################
# bulk resource testing
#######################

- name: resources-17062
- name: resources-17090
includes: [
'ubuntu-16.04',
]
attributes:
docker:
version: '17.06.2'
version: '17.09.0'
run_list:
- recipe[docker_test::default]
- recipe[docker_test::image]
Expand All @@ -172,7 +172,7 @@ suites:
]
attributes:
docker:
version: '17.06.2'
version: '17.09.0'
run_list:
- recipe[docker_test::default]
- recipe[docker_test::network]
Expand All @@ -183,7 +183,7 @@ suites:
]
attributes:
docker:
version: '17.06.2'
version: '17.09.0'
run_list:
- recipe[docker_test::default]
- recipe[docker_test::volume]
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services: docker

env:
matrix:
- INSTANCE=resources-17062-ubuntu-1604
- INSTANCE=resources-17090-ubuntu-1604
- INSTANCE=network-ubuntu-1604
- INSTANCE=volume-ubuntu-1604
# - INSTANCE=smoke-amazonlinux
Expand Down
2 changes: 1 addition & 1 deletion libraries/helpers_installation_package.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def default_docker_version
return '1.7.1' if el6?
return '17.03.2' if amazon?
return '17.04.0' if precise?
'17.06.2'
'17.09.0'
end

def default_package_name
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

describe command('/usr/bin/docker --version') do
its(:exit_status) { should eq 0 }
its(:stdout) { should match(/17.03.2/) }
its(:stdout) { should match(/17.09.0/) }
end

0 comments on commit 2dd4255

Please sign in to comment.