kitchen-docker 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.release-please-manifest.json +1 -1
- data/.rubocop.yml +0 -1
- data/.yardopts +11 -0
- data/CHANGELOG.md +381 -21
- data/CONTRIBUTING.md +203 -0
- data/Gemfile +4 -0
- data/README.md +417 -533
- data/Rakefile +18 -0
- data/lib/kitchen/docker/container/linux.rb +50 -0
- data/lib/kitchen/docker/container/windows.rb +27 -0
- data/lib/kitchen/docker/container.rb +34 -0
- data/lib/kitchen/docker/docker_version.rb +4 -2
- data/lib/kitchen/docker/erb_context.rb +9 -0
- data/lib/kitchen/docker/helpers/cli_helper.rb +56 -3
- data/lib/kitchen/docker/helpers/container_helper.rb +91 -19
- data/lib/kitchen/docker/helpers/dockerfile_helper.rb +54 -0
- data/lib/kitchen/docker/helpers/file_helper.rb +8 -0
- data/lib/kitchen/docker/helpers/image_helper.rb +28 -0
- data/lib/kitchen/docker/helpers/inspec_helper.rb +1 -0
- data/lib/kitchen/driver/docker.rb +27 -0
- data/lib/kitchen/transport/docker.rb +43 -2
- data/spec/cli_helper_spec.rb +312 -0
- data/spec/container_helper_spec.rb +178 -0
- data/spec/dockerfile_helper_spec.rb +97 -61
- data/spec/erb_context_spec.rb +60 -0
- data/spec/image_helper_spec.rb +142 -0
- data/spec/linux_container_spec.rb +194 -0
- data/spec/spec_helper.rb +27 -0
- data/spec/support/argv.rb +55 -0
- data/spec/support/docker_output.rb +117 -0
- data/spec/support/harness.rb +70 -0
- data/spec/transport_docker_spec.rb +7 -0
- data/spec/windows_container_spec.rb +101 -0
- metadata +13 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48b3e240f091225e997ef1b3ef22576733a2874ea3584e2d362f84af9bf48d70
|
|
4
|
+
data.tar.gz: d1f6e04ee6c62a9bdcd95f7020ce63b7de932161486383b2cde9d0541f871eab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2aab821262b74c69f39e6189549d87e9bbb265e9a9169d318702d86f0504c719e777a8363726e9996727b31c7b3ab989c5c1b917d641915b39268952114c57c9
|
|
7
|
+
data.tar.gz: f02acc355ec6699a2a23557d39599b1c98be400e906b9bfc20ee8dfa330c4d3eb98cbde1f8ccb38bcbab5ff8cd166ccf9babac0864a44fa1d7fbb8eaad78edaf
|
data/.rubocop.yml
CHANGED
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
|
@@ -2,15 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
Future CHANGELOG notes will be in GitHub release notes
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Unreleased
|
|
6
|
+
|
|
7
|
+
* Docs: document the last four options and split contributor docs ([#463](https://github.com/test-kitchen/kitchen-docker/pull/463)) ([4818bce](https://github.com/test-kitchen/kitchen-docker/commit/4818bce))
|
|
6
8
|
|
|
9
|
+
## [3.3.1](https://github.com/test-kitchen/kitchen-docker/compare/v3.3.0...v3.3.1) (2026-08-23)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* resolve gemspec load path and refactor proxy config method ([#440](https://github.com/test-kitchen/kitchen-docker/issues/440)) ([28a9b79](https://github.com/test-kitchen/kitchen-docker/commit/28a9b79f1722b3eb0e534623c6a00eb8881a93f6))
|
|
15
|
+
|
|
16
|
+
## [3.3.0](https://github.com/test-kitchen/kitchen-docker/compare/v3.2.4...v3.3.0) (2026-08-22)
|
|
7
17
|
|
|
8
18
|
### Features
|
|
9
19
|
|
|
10
20
|
* Support `kitchen login` with the Docker transport ([#462](https://github.com/test-kitchen/kitchen-docker/issues/462)) ([ba9b75e](https://github.com/test-kitchen/kitchen-docker/commit/ba9b75e8187eea72316dc91dbe3aec41221055bf))
|
|
11
21
|
|
|
12
|
-
|
|
22
|
+
### Other Changes
|
|
23
|
+
|
|
24
|
+
* Fix typos ([#460](https://github.com/test-kitchen/kitchen-docker/pull/460)) ([66986a3](https://github.com/test-kitchen/kitchen-docker/commit/66986a3))
|
|
25
|
+
* Require Ruby 3.1+ and modernize CI ([#461](https://github.com/test-kitchen/kitchen-docker/pull/461)) ([b53e4c5](https://github.com/test-kitchen/kitchen-docker/commit/b53e4c5))
|
|
13
26
|
|
|
27
|
+
## [3.2.4](https://github.com/test-kitchen/kitchen-docker/compare/v3.2.3...v3.2.4) (2026-07-28)
|
|
14
28
|
|
|
15
29
|
### Bug Fixes
|
|
16
30
|
|
|
@@ -18,22 +32,17 @@ Future CHANGELOG notes will be in GitHub release notes
|
|
|
18
32
|
|
|
19
33
|
## [3.2.3](https://github.com/test-kitchen/kitchen-docker/compare/v3.2.2...v3.2.3) (2026-06-25)
|
|
20
34
|
|
|
21
|
-
|
|
22
35
|
### Bug Fixes
|
|
23
36
|
|
|
24
37
|
* release please configs & tests ([#418](https://github.com/test-kitchen/kitchen-docker/issues/418)) ([9be9d75](https://github.com/test-kitchen/kitchen-docker/commit/9be9d754fd025dd721f1863e23e5502744f5bafb))
|
|
25
38
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
### Bug Fixes
|
|
30
|
-
|
|
31
|
-
* Fix curl package conflict in Amazon Linux 2022 images ([#436](https://github.com/test-kitchen/kitchen-docker/issues/436)) ([4eccec9](https://github.com/test-kitchen/kitchen-docker/commit/4eccec928556a1c6fc48e7fcf14de83a9ced5afa))
|
|
32
|
-
|
|
33
|
-
## [3.2.1](https://github.com/test-kitchen/kitchen-docker/compare/v3.2.0...v3.2.1) (2026-01-22)
|
|
39
|
+
### Other Changes
|
|
34
40
|
|
|
41
|
+
* Update workflows ([#410](https://github.com/test-kitchen/kitchen-docker/issues/410)) ([01acb1e](https://github.com/test-kitchen/kitchen-docker/commit/01acb1e00e45d02f71f70f68903c39d320d962df))
|
|
42
|
+
* refactor!: Run chefstlye over the codebase ([#408](https://github.com/test-kitchen/kitchen-docker/pull/408)) ([a9995e7](https://github.com/test-kitchen/kitchen-docker/commit/a9995e7))
|
|
43
|
+
* chore(deps): update actions/checkout action to v4 ([#411](https://github.com/test-kitchen/kitchen-docker/pull/411)) ([bd3a992](https://github.com/test-kitchen/kitchen-docker/commit/bd3a992))
|
|
35
44
|
|
|
36
|
-
|
|
45
|
+
* Tell the user when we can't remove the image if it's in use ([#406](https://github.com/test-kitchen/kitchen-docker/issues/406)) ([bcb7c2b](https://github.com/test-kitchen/kitchen-docker/commit/bcb7c2bc5144ec63c6bde7b8947de33d5484e718))
|
|
37
46
|
|
|
38
47
|
* bump tk dep <5 ([#446](https://github.com/test-kitchen/kitchen-docker/issues/446)) ([f27d137](https://github.com/test-kitchen/kitchen-docker/commit/f27d1374c1efd35769563683c5782849162c4f0c))
|
|
39
48
|
* Ignore vendor directory ([#439](https://github.com/test-kitchen/kitchen-docker/issues/439)) ([1c1c6a2](https://github.com/test-kitchen/kitchen-docker/commit/1c1c6a282ba52c2bf48b2ae0b181bc2fb3cf8bab))
|
|
@@ -41,20 +50,35 @@ Future CHANGELOG notes will be in GitHub release notes
|
|
|
41
50
|
* Remove use of DSA keys due to openssh deprecation ([#427](https://github.com/test-kitchen/kitchen-docker/issues/427)) ([f42bd6c](https://github.com/test-kitchen/kitchen-docker/commit/f42bd6c2930becd1524551b8f412ab934a80a326))
|
|
42
51
|
* Support docker build output for Docker Desktop v4.31 ([#423](https://github.com/test-kitchen/kitchen-docker/issues/423)) ([511e4ad](https://github.com/test-kitchen/kitchen-docker/commit/511e4ad36856b9e2eccceb56603586e6cebd296a))
|
|
43
52
|
* Use newer syntax for ENV variables ([#424](https://github.com/test-kitchen/kitchen-docker/issues/424)) ([2007a0d](https://github.com/test-kitchen/kitchen-docker/commit/2007a0dcc6461537412dd46084144beb89731d1a))
|
|
53
|
+
* fix: published package name ([#415](https://github.com/test-kitchen/kitchen-docker/pull/415)) ([f633d49](https://github.com/test-kitchen/kitchen-docker/commit/f633d49))
|
|
54
|
+
* chore(deps): update test-kitchen/.github action to v0.1.2 ([#414](https://github.com/test-kitchen/kitchen-docker/pull/414)) ([057465d](https://github.com/test-kitchen/kitchen-docker/commit/057465d))
|
|
55
|
+
* chore(deps): replace google-github-actions/release-please-action action with googleapis/release-please-action ([#432](https://github.com/test-kitchen/kitchen-docker/pull/432)) ([c1ba214](https://github.com/test-kitchen/kitchen-docker/commit/c1ba214))
|
|
56
|
+
* chore(deps): update actions/checkout action to v5 ([#430](https://github.com/test-kitchen/kitchen-docker/pull/430)) ([e756c47](https://github.com/test-kitchen/kitchen-docker/commit/e756c47))
|
|
57
|
+
* chore(deps): update dependency rspec-its to v2 ([#425](https://github.com/test-kitchen/kitchen-docker/pull/425)) ([9b22526](https://github.com/test-kitchen/kitchen-docker/commit/9b22526))
|
|
58
|
+
* chore: Remove EOL operating systems from test matrix ([#435](https://github.com/test-kitchen/kitchen-docker/pull/435)) ([06a6ccf](https://github.com/test-kitchen/kitchen-docker/commit/06a6ccf))
|
|
59
|
+
* chore(deps): update dependency kitchen-inspec to v3 ([#428](https://github.com/test-kitchen/kitchen-docker/pull/428)) ([0cfbe46](https://github.com/test-kitchen/kitchen-docker/commit/0cfbe46))
|
|
60
|
+
* chore(deps): update googleapis/release-please-action action to v4 ([#433](https://github.com/test-kitchen/kitchen-docker/pull/433)) ([60b83e0](https://github.com/test-kitchen/kitchen-docker/commit/60b83e0))
|
|
61
|
+
* chore(deps): update actions/checkout action to v6 ([#443](https://github.com/test-kitchen/kitchen-docker/pull/443)) ([8be39d4](https://github.com/test-kitchen/kitchen-docker/commit/8be39d4))
|
|
62
|
+
* chore(deps): update test-kitchen/.github action to v0.2.4 ([#442](https://github.com/test-kitchen/kitchen-docker/pull/442)) ([3490106](https://github.com/test-kitchen/kitchen-docker/commit/3490106))
|
|
44
63
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
* Tell the user when we can't remove the image if it's in use ([#406](https://github.com/test-kitchen/kitchen-docker/issues/406)) ([bcb7c2b](https://github.com/test-kitchen/kitchen-docker/commit/bcb7c2bc5144ec63c6bde7b8947de33d5484e718))
|
|
64
|
+
* Fix curl package conflict in Amazon Linux 2022 images ([#436](https://github.com/test-kitchen/kitchen-docker/issues/436)) ([4eccec9](https://github.com/test-kitchen/kitchen-docker/commit/4eccec928556a1c6fc48e7fcf14de83a9ced5afa))
|
|
65
|
+
* chore(deps): update actions/checkout action to v7 ([#453](https://github.com/test-kitchen/kitchen-docker/pull/453)) ([8397e75](https://github.com/test-kitchen/kitchen-docker/commit/8397e75))
|
|
66
|
+
* chore(deps): update googleapis/release-please-action action to v5 ([#451](https://github.com/test-kitchen/kitchen-docker/pull/451)) ([aa7ba91](https://github.com/test-kitchen/kitchen-docker/commit/aa7ba91))
|
|
67
|
+
* chore(deps): update docker/setup-buildx-action action to v4 ([#449](https://github.com/test-kitchen/kitchen-docker/pull/449)) ([5b0a6dc](https://github.com/test-kitchen/kitchen-docker/commit/5b0a6dc))
|
|
68
|
+
* chore(deps): update docker/setup-qemu-action action to v4 ([#448](https://github.com/test-kitchen/kitchen-docker/pull/448)) ([803738e](https://github.com/test-kitchen/kitchen-docker/commit/803738e))
|
|
51
69
|
|
|
52
|
-
## [3.
|
|
70
|
+
## [3.0.0](https://github.com/test-kitchen/kitchen-docker/compare/v2.15.0...v3.0.0) (2023-11-15)
|
|
53
71
|
|
|
72
|
+
* Add CI workflow ([#404](https://github.com/test-kitchen/kitchen-docker/pull/404)) ([5b350d9](https://github.com/test-kitchen/kitchen-docker/commit/5b350d9))
|
|
73
|
+
* Update workflows ([14c3e93](https://github.com/test-kitchen/kitchen-docker/commit/14c3e93))
|
|
74
|
+
* Fix: Switch to buildx builder ([#405](https://github.com/test-kitchen/kitchen-docker/pull/405)) ([e6edb34](https://github.com/test-kitchen/kitchen-docker/commit/e6edb34))
|
|
75
|
+
* Prep for 3.0.0 release ([d4b08cd](https://github.com/test-kitchen/kitchen-docker/commit/d4b08cd))
|
|
54
76
|
|
|
55
|
-
|
|
77
|
+
## [2.15.0](https://github.com/test-kitchen/kitchen-docker/compare/v.2.14.0...v2.15.0) (2023-11-13)
|
|
56
78
|
|
|
57
|
-
*
|
|
79
|
+
* Breaking rockylinux platform out ([#399](https://github.com/test-kitchen/kitchen-docker/pull/399)) ([c6f9206](https://github.com/test-kitchen/kitchen-docker/commit/c6f9206))
|
|
80
|
+
* Make sure gawk is installed on opensuse. ([#402](https://github.com/test-kitchen/kitchen-docker/pull/402)) ([fa03ee0](https://github.com/test-kitchen/kitchen-docker/commit/fa03ee0))
|
|
81
|
+
* Prep for 2.15.0 release ([65b4743](https://github.com/test-kitchen/kitchen-docker/commit/65b4743))
|
|
58
82
|
|
|
59
83
|
## 2.14.0 - November 13, 2023
|
|
60
84
|
|
|
@@ -63,17 +87,26 @@ Future CHANGELOG notes will be in GitHub release notes
|
|
|
63
87
|
- fix: parse_image_id: Process "docker build" output in reverse line order by @terminalmage in [#400](https://github.com/test-kitchen/kitchen-docker/pull/400)
|
|
64
88
|
- Allow build temporary Dockerfile in configured custom_dir by @Val in [294](https://github.com/test-kitchen/kitchen-docker/pull/294)
|
|
65
89
|
|
|
90
|
+
* Prep for release ([14d46a9](https://github.com/test-kitchen/kitchen-docker/commit/14d46a9))
|
|
91
|
+
* Update CHANGELOG for 2.14.0 ([d646fb2](https://github.com/test-kitchen/kitchen-docker/commit/d646fb2))
|
|
92
|
+
|
|
66
93
|
## 2.13.0 - June 10, 2022
|
|
67
94
|
|
|
68
95
|
- Added CentOSStream and PhotonOS - [@garethgreenaway](https://github.com/garethgreenaway)
|
|
69
96
|
- Fixed image parser when output includes a duration timestamp - [@RulerOf](https://github.com/RulerOf)
|
|
70
97
|
- Updated the test suites - [@RulerOf](https://github.com/RulerOf)
|
|
71
98
|
|
|
99
|
+
* Adding CentOSStream and PhotonOS ([#392](https://github.com/test-kitchen/kitchen-docker/pull/392)) ([d3467ff](https://github.com/test-kitchen/kitchen-docker/commit/d3467ff))
|
|
100
|
+
* Fix image parser when output includes a duration timestamp ([#390](https://github.com/test-kitchen/kitchen-docker/pull/390)) ([0c9a147](https://github.com/test-kitchen/kitchen-docker/commit/0c9a147))
|
|
101
|
+
* Update test suites ([#388](https://github.com/test-kitchen/kitchen-docker/pull/388)) ([36c01ab](https://github.com/test-kitchen/kitchen-docker/commit/36c01ab))
|
|
102
|
+
|
|
72
103
|
## 2.12.0 - December 22, 2021
|
|
73
104
|
|
|
74
105
|
- Support Docker BuildKit - [@RulerOf](https://github.com/RulerOf)
|
|
75
106
|
- Add new `docker_platform` config to allow specifying architectures - [@RulerOf](https://github.com/RulerOf)
|
|
76
107
|
|
|
108
|
+
* Use Docker BuildKit, support multiple CPU architectures ([#386](https://github.com/test-kitchen/kitchen-docker/pull/386)) ([9c2edd7](https://github.com/test-kitchen/kitchen-docker/commit/9c2edd7))
|
|
109
|
+
|
|
77
110
|
## 2.11.0 - July 2, 2021
|
|
78
111
|
|
|
79
112
|
- Update the development dependency on kitchen-inspec to 2.x
|
|
@@ -89,17 +122,38 @@ Future CHANGELOG notes will be in GitHub release notes
|
|
|
89
122
|
- Fix the error "Could not parse Docker build output for image ID" by improving the output line matching
|
|
90
123
|
- Add support for `almalinux` & `rockylinux`
|
|
91
124
|
|
|
125
|
+
* Add a maintainer wanted status ([9751a14](https://github.com/test-kitchen/kitchen-docker/commit/9751a14))
|
|
126
|
+
* Update kitchen-inspec requirement from ~> 1.1 to ~> 2.0 ([#367](https://github.com/test-kitchen/kitchen-docker/pull/367)) ([e8106a4](https://github.com/test-kitchen/kitchen-docker/commit/e8106a4))
|
|
127
|
+
* Added driver option for container isolation ([#351](https://github.com/test-kitchen/kitchen-docker/pull/351)) ([7f45feb](https://github.com/test-kitchen/kitchen-docker/commit/7f45feb))
|
|
128
|
+
* Support GPU in docker ([#347](https://github.com/test-kitchen/kitchen-docker/pull/347)) ([f0bce9d](https://github.com/test-kitchen/kitchen-docker/commit/f0bce9d))
|
|
129
|
+
* Fix CI tests and move Dockerfile configurations to helper file ([#370](https://github.com/test-kitchen/kitchen-docker/pull/370)) ([d9db4f9](https://github.com/test-kitchen/kitchen-docker/commit/d9db4f9))
|
|
130
|
+
* Add support for the `--mount` CLI option ([#363](https://github.com/test-kitchen/kitchen-docker/pull/363)) ([5f77c2c](https://github.com/test-kitchen/kitchen-docker/commit/5f77c2c))
|
|
131
|
+
* stop editing /etc/sudoers directly ([#334](https://github.com/test-kitchen/kitchen-docker/pull/334)) ([6b4e552](https://github.com/test-kitchen/kitchen-docker/commit/6b4e552))
|
|
132
|
+
* disables docker buildkit (fixes #337) ([#379](https://github.com/test-kitchen/kitchen-docker/pull/379)) ([b45c485](https://github.com/test-kitchen/kitchen-docker/commit/b45c485))
|
|
133
|
+
* Updates image_helper for additional output line matching ([#382](https://github.com/test-kitchen/kitchen-docker/pull/382)) ([1e58989](https://github.com/test-kitchen/kitchen-docker/commit/1e58989))
|
|
134
|
+
* Upgrade to GitHub-native Dependabot ([#381](https://github.com/test-kitchen/kitchen-docker/pull/381)) ([66cedc4](https://github.com/test-kitchen/kitchen-docker/commit/66cedc4))
|
|
135
|
+
* README.md: Fix link to getting-started page ([#383](https://github.com/test-kitchen/kitchen-docker/pull/383)) ([1b33572](https://github.com/test-kitchen/kitchen-docker/commit/1b33572))
|
|
136
|
+
|
|
92
137
|
## 2.10.0 - Mar 28, 2020
|
|
93
138
|
|
|
94
139
|
- Switched from require to require_relative to slightly improve load time performance
|
|
95
140
|
- Allow for train gem 3.x
|
|
96
141
|
- Refactor driver to include Windows support (includes new transport for all supported platforms)
|
|
97
142
|
|
|
143
|
+
* Allow Multiple Platform Names for Windows ([#345](https://github.com/test-kitchen/kitchen-docker/pull/345)) ([c2f715e](https://github.com/test-kitchen/kitchen-docker/commit/c2f715e))
|
|
144
|
+
* Allow train 3.x dev dep ([#358](https://github.com/test-kitchen/kitchen-docker/pull/358)) ([73f88e6](https://github.com/test-kitchen/kitchen-docker/commit/73f88e6))
|
|
145
|
+
* Use require_relative instead of require ([#359](https://github.com/test-kitchen/kitchen-docker/pull/359)) ([9b66340](https://github.com/test-kitchen/kitchen-docker/commit/9b66340))
|
|
146
|
+
* Update to the latest Ruby releases in Travis ([1726dbf](https://github.com/test-kitchen/kitchen-docker/commit/1726dbf))
|
|
147
|
+
|
|
98
148
|
## 2.9.0 - Mar 15, 2019
|
|
99
149
|
|
|
100
150
|
- Add automatic OS detection for amazonlinux, opensuse/leap, and opensuse/tumbleweed
|
|
101
151
|
- On Fedora containers uses dnf to setup the OS not yum
|
|
102
152
|
|
|
153
|
+
* Add support for Amazon Linux ([#323](https://github.com/test-kitchen/kitchen-docker/pull/323)) ([bac1803](https://github.com/test-kitchen/kitchen-docker/commit/bac1803))
|
|
154
|
+
* On Fedora install the dependencies with dnf not yum ([#333](https://github.com/test-kitchen/kitchen-docker/pull/333)) ([9009e85](https://github.com/test-kitchen/kitchen-docker/commit/9009e85))
|
|
155
|
+
* Add support for the opensuse/leap images ([#322](https://github.com/test-kitchen/kitchen-docker/pull/322)) ([8743b45](https://github.com/test-kitchen/kitchen-docker/commit/8743b45))
|
|
156
|
+
|
|
103
157
|
## 2.8.0 - Jan 18, 2019
|
|
104
158
|
|
|
105
159
|
- Add new config option `use_internal_docker_network`, which allows running Docker within Docker. See readme for usage details.
|
|
@@ -109,18 +163,61 @@ Future CHANGELOG notes will be in GitHub release notes
|
|
|
109
163
|
- Add oraclelinux platform support
|
|
110
164
|
- Prevent `uninitialized constant Kitchen::Driver::Docker::Base64` error by requiring `base64`
|
|
111
165
|
|
|
166
|
+
* Disable docker caching since I think it's breaking things. ([57a8771](https://github.com/test-kitchen/kitchen-docker/commit/57a8771))
|
|
167
|
+
* archlinux must be updated when repos are refreshed ([#307](https://github.com/test-kitchen/kitchen-docker/pull/307)) ([6075eb3](https://github.com/test-kitchen/kitchen-docker/commit/6075eb3))
|
|
168
|
+
* Update homepage in gemspec ([#321](https://github.com/test-kitchen/kitchen-docker/pull/321)) ([e1d1d7b](https://github.com/test-kitchen/kitchen-docker/commit/e1d1d7b))
|
|
169
|
+
* mkdir /run/sshd in container to support ubuntu 18.04 ([#309](https://github.com/test-kitchen/kitchen-docker/pull/309)) ([fe9fa89](https://github.com/test-kitchen/kitchen-docker/commit/fe9fa89))
|
|
170
|
+
* Added support for oraclelinux ([#298](https://github.com/test-kitchen/kitchen-docker/pull/298)) ([37eff91](https://github.com/test-kitchen/kitchen-docker/commit/37eff91))
|
|
171
|
+
* Fix bug #314 - check if image exists before remove. ([#315](https://github.com/test-kitchen/kitchen-docker/pull/315)) ([7f5e8dc](https://github.com/test-kitchen/kitchen-docker/commit/7f5e8dc))
|
|
172
|
+
* require base64 ([#311](https://github.com/test-kitchen/kitchen-docker/pull/311)) ([2831594](https://github.com/test-kitchen/kitchen-docker/commit/2831594))
|
|
173
|
+
* feat: added use_internal_docker_network feature ([#304](https://github.com/test-kitchen/kitchen-docker/pull/304)) ([8f6038d](https://github.com/test-kitchen/kitchen-docker/commit/8f6038d))
|
|
174
|
+
* Make sure the travis badge is master ([254058c](https://github.com/test-kitchen/kitchen-docker/commit/254058c))
|
|
175
|
+
|
|
112
176
|
## 2.7.0
|
|
113
177
|
|
|
114
178
|
- Support for SUSE-based container images.
|
|
115
179
|
- Improved support for build context shipping.
|
|
116
180
|
- Changed `use_sudo` to default to `false` in keeping with modern Docker usage.
|
|
117
181
|
|
|
182
|
+
* Fix Gentoo support ([#230](https://github.com/test-kitchen/kitchen-docker/pull/230)) ([668a028](https://github.com/test-kitchen/kitchen-docker/commit/668a028))
|
|
183
|
+
* Use relative paths when passing -f Dockerfile ([#245](https://github.com/test-kitchen/kitchen-docker/pull/245)) ([b2b44ba](https://github.com/test-kitchen/kitchen-docker/commit/b2b44ba))
|
|
184
|
+
* Fix ssh_host key generation failure if file already exists ([#253](https://github.com/test-kitchen/kitchen-docker/pull/253)) ([350a698](https://github.com/test-kitchen/kitchen-docker/commit/350a698))
|
|
185
|
+
* Docker for Windows socket example ([#255](https://github.com/test-kitchen/kitchen-docker/pull/255)) ([08fbc00](https://github.com/test-kitchen/kitchen-docker/commit/08fbc00))
|
|
186
|
+
* Add support for sles and opensuse operating systems. ([#262](https://github.com/test-kitchen/kitchen-docker/pull/262)) ([9eabd01](https://github.com/test-kitchen/kitchen-docker/commit/9eabd01))
|
|
187
|
+
* Remove gemnasium badge ([#300](https://github.com/test-kitchen/kitchen-docker/pull/300)) ([69be64f](https://github.com/test-kitchen/kitchen-docker/commit/69be64f))
|
|
188
|
+
* Change `use_sudo` to default to false. ([fe3734e](https://github.com/test-kitchen/kitchen-docker/commit/fe3734e))
|
|
189
|
+
* Changelog for 2.7.0. ([8714f2a](https://github.com/test-kitchen/kitchen-docker/commit/8714f2a))
|
|
190
|
+
* Swap 12.04 for 18.04. ([71218f5](https://github.com/test-kitchen/kitchen-docker/commit/71218f5))
|
|
191
|
+
* Drop 18.04 for now, weird issues with sshd. ([8b1e0d0](https://github.com/test-kitchen/kitchen-docker/commit/8b1e0d0))
|
|
192
|
+
* Use specific versions for tests. ([6b5a561](https://github.com/test-kitchen/kitchen-docker/commit/6b5a561))
|
|
193
|
+
* Possible fix for 18.04 or other debianoids that don't actually use upstart. ([56b5aea](https://github.com/test-kitchen/kitchen-docker/commit/56b5aea))
|
|
194
|
+
* Test on recent Ruby. ([f914ed9](https://github.com/test-kitchen/kitchen-docker/commit/f914ed9))
|
|
195
|
+
* Also remove 18.04 here too. ([ba57e54](https://github.com/test-kitchen/kitchen-docker/commit/ba57e54))
|
|
196
|
+
* Disable Arch linux too for now. ([f54d81a](https://github.com/test-kitchen/kitchen-docker/commit/f54d81a))
|
|
197
|
+
|
|
118
198
|
## 2.6.0
|
|
119
199
|
|
|
120
200
|
- Set container name with information from the run so you can identify them
|
|
121
201
|
later on.
|
|
122
202
|
- Upgrade to new driver base class structure.
|
|
123
203
|
|
|
204
|
+
## [2.6.0.rc.0](https://github.com/test-kitchen/kitchen-docker/compare/v2.5.0...v2.6.0.rc.0) (2016-08-14)
|
|
205
|
+
|
|
206
|
+
* Include the actual license text for ApacheV2. ([d64919b](https://github.com/test-kitchen/kitchen-docker/commit/d64919b))
|
|
207
|
+
* More specific versions because RVM makes me sad. ([232e5a8](https://github.com/test-kitchen/kitchen-docker/commit/232e5a8))
|
|
208
|
+
* Try caching docker stuff? ([03d1104](https://github.com/test-kitchen/kitchen-docker/commit/03d1104))
|
|
209
|
+
* Bundle exec all the things dot guife. ([a853861](https://github.com/test-kitchen/kitchen-docker/commit/a853861))
|
|
210
|
+
* Update README.md ([b408e94](https://github.com/test-kitchen/kitchen-docker/commit/b408e94))
|
|
211
|
+
* Updates for the README. [ci skip] ([4130893](https://github.com/test-kitchen/kitchen-docker/commit/4130893))
|
|
212
|
+
* Add coverage reporting. This is going to be sad. ([ab83071](https://github.com/test-kitchen/kitchen-docker/commit/ab83071))
|
|
213
|
+
* env container=docker for debians, ext #192 ([#216](https://github.com/test-kitchen/kitchen-docker/pull/216)) ([6f00783](https://github.com/test-kitchen/kitchen-docker/commit/6f00783))
|
|
214
|
+
* De-legacy the driver by switching to the Base base class. ([b6d8a47](https://github.com/test-kitchen/kitchen-docker/commit/b6d8a47))
|
|
215
|
+
* Set a default container name that includes a bunch of info to track down what launched the container. Shameless borrowed from kitchen-rackspace. ([bbefea6](https://github.com/test-kitchen/kitchen-docker/commit/bbefea6))
|
|
216
|
+
* Be a little less reserved about string length because docker seems to accept longer strings. ([deb1d35](https://github.com/test-kitchen/kitchen-docker/commit/deb1d35))
|
|
217
|
+
* Make sure we create an unlocked user now that we aren't setting a password. ([ed387b2](https://github.com/test-kitchen/kitchen-docker/commit/ed387b2))
|
|
218
|
+
* Prepping an RC release to soak for a bit. ([20eaca1](https://github.com/test-kitchen/kitchen-docker/commit/20eaca1))
|
|
219
|
+
* Changelog for 2.6.0. ([62f4894](https://github.com/test-kitchen/kitchen-docker/commit/62f4894))
|
|
220
|
+
|
|
124
221
|
## 2.5.0
|
|
125
222
|
|
|
126
223
|
- [#209](https://github.com/portertech/kitchen-docker/pulls/209) Fix usage with Kitchen rake tasks.
|
|
@@ -128,6 +225,26 @@ Future CHANGELOG notes will be in GitHub release notes
|
|
|
128
225
|
- [#195](https://github.com/portertech/kitchen-docker/pulls/195) Fix Arch Linux support.
|
|
129
226
|
- Fix shell escaping for build paths and SSH keys.
|
|
130
227
|
|
|
228
|
+
* Support tmpfs mounts without requiring privileged mode ([#212](https://github.com/test-kitchen/kitchen-docker/pull/212)) ([f4badb3](https://github.com/test-kitchen/kitchen-docker/commit/f4badb3))
|
|
229
|
+
* Remove the tmpfs config option in favor of a more generic run_options config, and build_options in case something is needed there. ([255e5cf](https://github.com/test-kitchen/kitchen-docker/commit/255e5cf))
|
|
230
|
+
* Minor cleanups. ([090c2c3](https://github.com/test-kitchen/kitchen-docker/commit/090c2c3))
|
|
231
|
+
* Trying to start on getting CI to be a thing. ([5b245c7](https://github.com/test-kitchen/kitchen-docker/commit/5b245c7))
|
|
232
|
+
* Clean up the capabilities test suite. ([f58d170](https://github.com/test-kitchen/kitchen-docker/commit/f58d170))
|
|
233
|
+
* Some tweaks to the kitchen config based on #195. ([d0afc76](https://github.com/test-kitchen/kitchen-docker/commit/d0afc76))
|
|
234
|
+
* Fix copyright year. ([4982231](https://github.com/test-kitchen/kitchen-docker/commit/4982231))
|
|
235
|
+
* Bump to a pre-release version number. ([bf1eca8](https://github.com/test-kitchen/kitchen-docker/commit/bf1eca8))
|
|
236
|
+
* Escape the temp file path if needed. Fixes #214. ([fd41ceb](https://github.com/test-kitchen/kitchen-docker/commit/fd41ceb))
|
|
237
|
+
* Another minor cleanup. ([f93b21b](https://github.com/test-kitchen/kitchen-docker/commit/f93b21b))
|
|
238
|
+
* Copy over the rest of #195. Closes #195. ([bc5dd57](https://github.com/test-kitchen/kitchen-docker/commit/bc5dd57))
|
|
239
|
+
* Upgrade OpenSSL on Arch to avoid mismatch errors. ([614b65b](https://github.com/test-kitchen/kitchen-docker/commit/614b65b))
|
|
240
|
+
* Some tweaks to make sudo work on all platforms. ([c05dbe9](https://github.com/test-kitchen/kitchen-docker/commit/c05dbe9))
|
|
241
|
+
* Update the capabilities test. ([8828cab](https://github.com/test-kitchen/kitchen-docker/commit/8828cab))
|
|
242
|
+
* Update the dockerfile tests to include the SSH key. ([e41c7a8](https://github.com/test-kitchen/kitchen-docker/commit/e41c7a8))
|
|
243
|
+
* I forgot we need Chef installed for busser to work correctly. ([c02fcff](https://github.com/test-kitchen/kitchen-docker/commit/c02fcff))
|
|
244
|
+
* Add inspec integration tests. /cc @chris-rock ([45d5a1e](https://github.com/test-kitchen/kitchen-docker/commit/45d5a1e))
|
|
245
|
+
* Fully escape the public key when echo'ing it. ([28f1e17](https://github.com/test-kitchen/kitchen-docker/commit/28f1e17))
|
|
246
|
+
* Changelog for 2.5.0. ([9f02e4f](https://github.com/test-kitchen/kitchen-docker/commit/9f02e4f))
|
|
247
|
+
|
|
131
248
|
## 2.4.0
|
|
132
249
|
|
|
133
250
|
- [#148](https://github.com/portertech/kitchen-docker/issues/148) Restored support for older versions of Ruby.
|
|
@@ -138,11 +255,24 @@ Future CHANGELOG notes will be in GitHub release notes
|
|
|
138
255
|
- [#196](https://github.com/portertech/kitchen-docker/pulls/196) Mutex SSH key generation for use with `kitchen -c`.
|
|
139
256
|
- [#192](https://github.com/portertech/kitchen-docker/pulls/192) Don't wait when stopping a container.
|
|
140
257
|
|
|
258
|
+
* Strip the public_key whitespace ([#167](https://github.com/test-kitchen/kitchen-docker/pull/167)) ([2ae315e](https://github.com/test-kitchen/kitchen-docker/commit/2ae315e))
|
|
259
|
+
* Remove Tempfile.create. ([727f4d0](https://github.com/test-kitchen/kitchen-docker/commit/727f4d0))
|
|
260
|
+
* Note about docker-machine since boot2docker is being deprecated ([#187](https://github.com/test-kitchen/kitchen-docker/pull/187)) ([f7acd0f](https://github.com/test-kitchen/kitchen-docker/commit/f7acd0f))
|
|
261
|
+
* Whitespace cleanup. ([6588c2c](https://github.com/test-kitchen/kitchen-docker/commit/6588c2c))
|
|
262
|
+
* Don't wait while stopping a container ([#198](https://github.com/test-kitchen/kitchen-docker/pull/198)) ([6b2c855](https://github.com/test-kitchen/kitchen-docker/commit/6b2c855))
|
|
263
|
+
* Prepping a 2.4.0 release at long last. ([8a8e40a](https://github.com/test-kitchen/kitchen-docker/commit/8a8e40a))
|
|
264
|
+
|
|
141
265
|
## 2.3.0
|
|
142
266
|
|
|
143
267
|
- `build_context` option (boolean) to enable/disable sending the build
|
|
144
268
|
context to Docker.
|
|
145
269
|
|
|
270
|
+
* updated docker version constraint in readme ([a80b3af](https://github.com/test-kitchen/kitchen-docker/commit/a80b3af))
|
|
271
|
+
* Allow disabling the build context. ([#143](https://github.com/test-kitchen/kitchen-docker/pull/143)) ([531ecd1](https://github.com/test-kitchen/kitchen-docker/commit/531ecd1))
|
|
272
|
+
* minor cleanup and test build_context config ([5d07ae0](https://github.com/test-kitchen/kitchen-docker/commit/5d07ae0))
|
|
273
|
+
* Add docs for build_context. ([#144](https://github.com/test-kitchen/kitchen-docker/pull/144)) ([94cf846](https://github.com/test-kitchen/kitchen-docker/commit/94cf846))
|
|
274
|
+
* minor version bump, 2.3.0 ([7687efd](https://github.com/test-kitchen/kitchen-docker/commit/7687efd))
|
|
275
|
+
|
|
146
276
|
## 2.2.0
|
|
147
277
|
|
|
148
278
|
- Use a temporary file for each suite instance Docker container
|
|
@@ -153,10 +283,22 @@ generated key pair.
|
|
|
153
283
|
- Support for sharing a host device with suite instance Docker containers.
|
|
154
284
|
- README YAML highlighting.
|
|
155
285
|
|
|
286
|
+
* updated changelog ([041b48f](https://github.com/test-kitchen/kitchen-docker/commit/041b48f))
|
|
287
|
+
* Fix docs for run_command default ([#140](https://github.com/test-kitchen/kitchen-docker/pull/140)) ([b5972dd](https://github.com/test-kitchen/kitchen-docker/commit/b5972dd))
|
|
288
|
+
* README.md: Syntax highlight yaml ([#139](https://github.com/test-kitchen/kitchen-docker/pull/139)) ([cbf76ea](https://github.com/test-kitchen/kitchen-docker/commit/cbf76ea))
|
|
289
|
+
* Adding passwordless SSH and fixing some of the spec files ([#141](https://github.com/test-kitchen/kitchen-docker/pull/141)) ([2f1dda3](https://github.com/test-kitchen/kitchen-docker/commit/2f1dda3))
|
|
290
|
+
* Add support for --devices argument to docker. ([#135](https://github.com/test-kitchen/kitchen-docker/pull/135)) ([159c13d](https://github.com/test-kitchen/kitchen-docker/commit/159c13d))
|
|
291
|
+
* Docker - Build Context Support ([#136](https://github.com/test-kitchen/kitchen-docker/pull/136)) ([bf07ff2](https://github.com/test-kitchen/kitchen-docker/commit/bf07ff2))
|
|
292
|
+
* Post merge adjustments, release prep ([#142](https://github.com/test-kitchen/kitchen-docker/pull/142)) ([64586e3](https://github.com/test-kitchen/kitchen-docker/commit/64586e3))
|
|
293
|
+
* minor version bump, 2.2.0 ([ebe73ba](https://github.com/test-kitchen/kitchen-docker/commit/ebe73ba))
|
|
294
|
+
|
|
156
295
|
## 2.1.0
|
|
157
296
|
|
|
158
297
|
- Use `NUL` instead of `/dev/null` on Windows for output redirection
|
|
159
298
|
|
|
299
|
+
* Use NUL instead of /dev/null to make it work on Windows ([#122](https://github.com/test-kitchen/kitchen-docker/pull/122)) ([88e3944](https://github.com/test-kitchen/kitchen-docker/commit/88e3944))
|
|
300
|
+
* minor version bump, windows nul ([6aa98bf](https://github.com/test-kitchen/kitchen-docker/commit/6aa98bf))
|
|
301
|
+
|
|
160
302
|
## 2.0.0
|
|
161
303
|
|
|
162
304
|
- Use Docker `top` and `port` instead of `inspect`
|
|
@@ -167,10 +309,29 @@ generated key pair.
|
|
|
167
309
|
- Create `/etc/sudoers.d` if missing
|
|
168
310
|
- Fixed option deprecation warnings, require Docker >= 1.2
|
|
169
311
|
|
|
312
|
+
* Move away from `docker inspect` to avoid spurious output ([#100](https://github.com/test-kitchen/kitchen-docker/pull/100)) ([6864c86](https://github.com/test-kitchen/kitchen-docker/commit/6864c86))
|
|
313
|
+
* update privileged flag ([#107](https://github.com/test-kitchen/kitchen-docker/pull/107)) ([73b5352](https://github.com/test-kitchen/kitchen-docker/commit/73b5352))
|
|
314
|
+
* update capability flags ([#105](https://github.com/test-kitchen/kitchen-docker/pull/105)) ([e25167c](https://github.com/test-kitchen/kitchen-docker/commit/e25167c))
|
|
315
|
+
* Add centos 5 /etc/sudoers.d support ([#102](https://github.com/test-kitchen/kitchen-docker/pull/102)) ([a714406](https://github.com/test-kitchen/kitchen-docker/commit/a714406))
|
|
316
|
+
* Fix deprecated -dns argument. Add host support ([#94](https://github.com/test-kitchen/kitchen-docker/pull/94)) ([09bcd6e](https://github.com/test-kitchen/kitchen-docker/commit/09bcd6e))
|
|
317
|
+
* Do not fail if the user already exists ([#101](https://github.com/test-kitchen/kitchen-docker/pull/101)) ([e9e8b13](https://github.com/test-kitchen/kitchen-docker/commit/e9e8b13))
|
|
318
|
+
* removed excess code, cleaned up cap_*, wait_for_sshd conditional ([ca6dedd](https://github.com/test-kitchen/kitchen-docker/commit/ca6dedd))
|
|
319
|
+
* updated readme, move cap_* under privileged ([8adcf53](https://github.com/test-kitchen/kitchen-docker/commit/8adcf53))
|
|
320
|
+
* fixed cap_* block style ([d96f6c7](https://github.com/test-kitchen/kitchen-docker/commit/d96f6c7))
|
|
321
|
+
* Enable security opt (rebased) ([#118](https://github.com/test-kitchen/kitchen-docker/pull/118)) ([831356f](https://github.com/test-kitchen/kitchen-docker/commit/831356f))
|
|
322
|
+
* minor readme edits, escape heading underscores, periods. ([879691e](https://github.com/test-kitchen/kitchen-docker/commit/879691e))
|
|
323
|
+
* readme edit, docker version requirement ([8f2fae9](https://github.com/test-kitchen/kitchen-docker/commit/8f2fae9))
|
|
324
|
+
* readme edit, bold docker version constraint ([fbd4541](https://github.com/test-kitchen/kitchen-docker/commit/fbd4541))
|
|
325
|
+
* readme edit, docker installation link update ([389299e](https://github.com/test-kitchen/kitchen-docker/commit/389299e))
|
|
326
|
+
|
|
170
327
|
## 1.7.0
|
|
171
328
|
|
|
172
329
|
- Ensure a container id is set before attempting to inspect a container
|
|
173
330
|
|
|
331
|
+
* use single quotes for centos platform/release adjustments ([b35dbe5](https://github.com/test-kitchen/kitchen-docker/commit/b35dbe5))
|
|
332
|
+
* ensure there is a container id before inspecting a container ([6649630](https://github.com/test-kitchen/kitchen-docker/commit/6649630))
|
|
333
|
+
* minor version bump ([a2d6501](https://github.com/test-kitchen/kitchen-docker/commit/a2d6501))
|
|
334
|
+
|
|
174
335
|
## 1.6.0
|
|
175
336
|
|
|
176
337
|
- `publish_all` option to publish all ports to the host interface
|
|
@@ -181,3 +342,202 @@ generated key pair.
|
|
|
181
342
|
- Added `fedora` to platform names
|
|
182
343
|
- Support for `gentoo` and `gentoo-paludis` platforms
|
|
183
344
|
- Adding sudo rule to `/etc/sudoers.d/#{username}` in addition to `/etc/sudoers`
|
|
345
|
+
|
|
346
|
+
* tell verify_dependencies to be quieter ([#77](https://github.com/test-kitchen/kitchen-docker/pull/77)) ([4869efb](https://github.com/test-kitchen/kitchen-docker/commit/4869efb))
|
|
347
|
+
* gentoo support ([#78](https://github.com/test-kitchen/kitchen-docker/pull/78)) ([35447ea](https://github.com/test-kitchen/kitchen-docker/commit/35447ea))
|
|
348
|
+
* Added configuration details for use_sudo ([#95](https://github.com/test-kitchen/kitchen-docker/pull/95)) ([a7e3f48](https://github.com/test-kitchen/kitchen-docker/commit/a7e3f48))
|
|
349
|
+
* added "fedora" as a supported platform value ([cd4ebfb](https://github.com/test-kitchen/kitchen-docker/commit/cd4ebfb))
|
|
350
|
+
* Support --name and --link and -P options to link between some containers. ([#92](https://github.com/test-kitchen/kitchen-docker/pull/92)) ([0792a15](https://github.com/test-kitchen/kitchen-docker/commit/0792a15))
|
|
351
|
+
* Add ENV['DOCKER_HOST'] as default socket and add docs ([#71](https://github.com/test-kitchen/kitchen-docker/pull/71)) ([7e42958](https://github.com/test-kitchen/kitchen-docker/commit/7e42958))
|
|
352
|
+
* default run_command string concatenation ([354c537](https://github.com/test-kitchen/kitchen-docker/commit/354c537))
|
|
353
|
+
* test instance_name, publish_all, and links. ([4a87141](https://github.com/test-kitchen/kitchen-docker/commit/4a87141))
|
|
354
|
+
* redirect stderr & stdout, write out `sudoers.d/#{username}` ([03b2a30](https://github.com/test-kitchen/kitchen-docker/commit/03b2a30))
|
|
355
|
+
* minor version bump ([bdc10b4](https://github.com/test-kitchen/kitchen-docker/commit/bdc10b4))
|
|
356
|
+
|
|
357
|
+
## [1.5.0](https://github.com/test-kitchen/kitchen-docker/compare/v1.4.0...v1.5.0) (2014-07-09)
|
|
358
|
+
|
|
359
|
+
* Official CentOS image changed how it does tagging ([#70](https://github.com/test-kitchen/kitchen-docker/pull/70)) ([a44b9bc](https://github.com/test-kitchen/kitchen-docker/commit/a44b9bc))
|
|
360
|
+
* minor version bump, centos tagging ([d21213a](https://github.com/test-kitchen/kitchen-docker/commit/d21213a))
|
|
361
|
+
|
|
362
|
+
## [1.4.0](https://github.com/test-kitchen/kitchen-docker/compare/v1.3.1...v1.4.0) (2014-06-27)
|
|
363
|
+
|
|
364
|
+
* simple patch to add volumes-from support ([#67](https://github.com/test-kitchen/kitchen-docker/pull/67)) ([844eda9](https://github.com/test-kitchen/kitchen-docker/commit/844eda9))
|
|
365
|
+
* Add http proxy and https proxy support to suite containers ([#66](https://github.com/test-kitchen/kitchen-docker/pull/66)) ([30d239f](https://github.com/test-kitchen/kitchen-docker/commit/30d239f))
|
|
366
|
+
* dockerfile environment component, dried up proxy option ([a225d1b](https://github.com/test-kitchen/kitchen-docker/commit/a225d1b))
|
|
367
|
+
* updated license copyright ([226f377](https://github.com/test-kitchen/kitchen-docker/commit/226f377))
|
|
368
|
+
* sshd UsePrivilegeSeparation=no to deal w/ tmpfs, http(s)_proxy applied at run ([2ffd6a0](https://github.com/test-kitchen/kitchen-docker/commit/2ffd6a0))
|
|
369
|
+
|
|
370
|
+
## [1.3.1](https://github.com/test-kitchen/kitchen-docker/compare/v1.2.1...v1.3.1) (2014-06-05)
|
|
371
|
+
|
|
372
|
+
* Add support for all the authentication options. ([#63](https://github.com/test-kitchen/kitchen-docker/pull/63)) ([aeebcc8](https://github.com/test-kitchen/kitchen-docker/commit/aeebcc8))
|
|
373
|
+
* use underscores for tls options, tls_ ([3d68eb3](https://github.com/test-kitchen/kitchen-docker/commit/3d68eb3))
|
|
374
|
+
* tls config option default value white space ([ab1a83f](https://github.com/test-kitchen/kitchen-docker/commit/ab1a83f))
|
|
375
|
+
* minor version bump, tls support ([3284b2b](https://github.com/test-kitchen/kitchen-docker/commit/3284b2b))
|
|
376
|
+
|
|
377
|
+
## [1.2.1](https://github.com/test-kitchen/kitchen-docker/compare/v1.2.0...v1.2.1) (2014-04-24)
|
|
378
|
+
|
|
379
|
+
* Added necessary requirement to parse socket uri ([#55](https://github.com/test-kitchen/kitchen-docker/pull/55)) ([1506316](https://github.com/test-kitchen/kitchen-docker/commit/1506316))
|
|
380
|
+
* patch level bump, ensure uri has been required ([ab4828d](https://github.com/test-kitchen/kitchen-docker/commit/ab4828d))
|
|
381
|
+
|
|
382
|
+
## [1.2.0](https://github.com/test-kitchen/kitchen-docker/compare/v1.1.0.beta...v1.2.0) (2014-04-21)
|
|
383
|
+
|
|
384
|
+
* Added custom Dockerfile support ([#53](https://github.com/test-kitchen/kitchen-docker/pull/53)) ([0163c88](https://github.com/test-kitchen/kitchen-docker/commit/0163c88))
|
|
385
|
+
* Added support for platform arch ([#46](https://github.com/test-kitchen/kitchen-docker/pull/46)) ([3fcaf72](https://github.com/test-kitchen/kitchen-docker/commit/3fcaf72))
|
|
386
|
+
* parallel/concurrency can break container rm, check if container exists ([3f89f57](https://github.com/test-kitchen/kitchen-docker/commit/3f89f57))
|
|
387
|
+
* docker "binary" config option, ubuntu 14.04 uses `docker.io`, default serverspec ([310a85f](https://github.com/test-kitchen/kitchen-docker/commit/310a85f))
|
|
388
|
+
* document "binary" config option ([8fa842a](https://github.com/test-kitchen/kitchen-docker/commit/8fa842a))
|
|
389
|
+
* include chef install for test containers/suites ([c8549d7](https://github.com/test-kitchen/kitchen-docker/commit/c8549d7))
|
|
390
|
+
* Add -N flag to ssh-keygen commands ([#51](https://github.com/test-kitchen/kitchen-docker/pull/51)) ([566923f](https://github.com/test-kitchen/kitchen-docker/commit/566923f))
|
|
391
|
+
|
|
392
|
+
## [1.1.0.beta](https://github.com/test-kitchen/kitchen-docker/compare/v1.0.0...v1.1.0.beta) (2014-03-28)
|
|
393
|
+
|
|
394
|
+
* added "which" package to rhel/centos provisioning ([289c17c](https://github.com/test-kitchen/kitchen-docker/commit/289c17c))
|
|
395
|
+
|
|
396
|
+
## [1.0.0](https://github.com/test-kitchen/kitchen-docker/compare/v1.0.0.beta...v1.0.0) (2014-03-28)
|
|
397
|
+
|
|
398
|
+
* added `use_cache` and `remove_intermediate_containers` config options ([1bfb4a0](https://github.com/test-kitchen/kitchen-docker/commit/1bfb4a0))
|
|
399
|
+
* README: update example .kitchen.local.yml ([#45](https://github.com/test-kitchen/kitchen-docker/pull/45)) ([de23db2](https://github.com/test-kitchen/kitchen-docker/commit/de23db2))
|
|
400
|
+
* removed `remove_intermediate_containers`, little value, we have the cache ([a1fc991](https://github.com/test-kitchen/kitchen-docker/commit/a1fc991))
|
|
401
|
+
* documented `use_cache` ([ca775b5](https://github.com/test-kitchen/kitchen-docker/commit/ca775b5))
|
|
402
|
+
* cutting 1.0 \o/ ([6b5d21b](https://github.com/test-kitchen/kitchen-docker/commit/6b5d21b))
|
|
403
|
+
|
|
404
|
+
## [1.0.0.beta](https://github.com/test-kitchen/kitchen-docker/compare/v0.13.0...v1.0.0.beta) (2014-03-20)
|
|
405
|
+
|
|
406
|
+
* add documentation for run_command config option ([d3e83df](https://github.com/test-kitchen/kitchen-docker/commit/d3e83df))
|
|
407
|
+
* use tk for testing ([cf9907d](https://github.com/test-kitchen/kitchen-docker/commit/cf9907d))
|
|
408
|
+
* make the default docker socket apparent in kitchen diagnose output ([a3a60af](https://github.com/test-kitchen/kitchen-docker/commit/a3a60af))
|
|
409
|
+
* fix documentation styling for run_command ([3688ace](https://github.com/test-kitchen/kitchen-docker/commit/3688ace))
|
|
410
|
+
* minor readme edits, run_command ([ef96495](https://github.com/test-kitchen/kitchen-docker/commit/ef96495))
|
|
411
|
+
* readme edits, yaml doesn't need quotes ([fe8eba4](https://github.com/test-kitchen/kitchen-docker/commit/fe8eba4))
|
|
412
|
+
* readme, updated docs link, not driver specific ([2165fa8](https://github.com/test-kitchen/kitchen-docker/commit/2165fa8))
|
|
413
|
+
* base docker image has been deprecated, use ubuntu ([99a373b](https://github.com/test-kitchen/kitchen-docker/commit/99a373b))
|
|
414
|
+
* already assuming ubuntu, let's assume platform --> image ([d0e038a](https://github.com/test-kitchen/kitchen-docker/commit/d0e038a))
|
|
415
|
+
* make disabling upstart configurable, disable_upstart, set to false for ubuntu-upstart image ([8639669](https://github.com/test-kitchen/kitchen-docker/commit/8639669))
|
|
416
|
+
* specify the docker cli tool in the dependency message ([4683c39](https://github.com/test-kitchen/kitchen-docker/commit/4683c39))
|
|
417
|
+
* prepare for a 1.0.0.beta \o/ ([713f8d6](https://github.com/test-kitchen/kitchen-docker/commit/713f8d6))
|
|
418
|
+
* document disable_upstart, remove the known issue ([d6f480e](https://github.com/test-kitchen/kitchen-docker/commit/d6f480e))
|
|
419
|
+
* readme edit, capitalize distros ([6e2df3d](https://github.com/test-kitchen/kitchen-docker/commit/6e2df3d))
|
|
420
|
+
|
|
421
|
+
## [0.13.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.12.0...v0.13.0) (2013-12-01)
|
|
422
|
+
|
|
423
|
+
* run init so container remains accessible after sshd restart ([#28](https://github.com/test-kitchen/kitchen-docker/pull/28)) ([5670fb1](https://github.com/test-kitchen/kitchen-docker/commit/5670fb1))
|
|
424
|
+
|
|
425
|
+
## [0.12.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.11.0...v0.12.0) (2013-11-29)
|
|
426
|
+
|
|
427
|
+
* compute use_sudo using socket, chef omnibus up to provisioner, socket nil for visability ([e053859](https://github.com/test-kitchen/kitchen-docker/commit/e053859))
|
|
428
|
+
|
|
429
|
+
## [0.11.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.10.0...v0.11.0) (2013-11-28)
|
|
430
|
+
|
|
431
|
+
* options is 3rd argument, fixes #24 ([#26](https://github.com/test-kitchen/kitchen-docker/pull/26)) ([a039b14](https://github.com/test-kitchen/kitchen-docker/commit/a039b14))
|
|
432
|
+
* depend on tk 1.0.0.rc.1 ([d7e885f](https://github.com/test-kitchen/kitchen-docker/commit/d7e885f))
|
|
433
|
+
* new release, wait_for_sshd() fix ([f66f6aa](https://github.com/test-kitchen/kitchen-docker/commit/f66f6aa))
|
|
434
|
+
|
|
435
|
+
## [0.10.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.9.0...v0.10.0) (2013-11-19)
|
|
436
|
+
|
|
437
|
+
* no need for sudo in provision_command ([53b98b3](https://github.com/test-kitchen/kitchen-docker/commit/53b98b3))
|
|
438
|
+
* Update to support the docker "hostname" command flag ([#22](https://github.com/test-kitchen/kitchen-docker/pull/22)) ([8f630cd](https://github.com/test-kitchen/kitchen-docker/commit/8f630cd))
|
|
439
|
+
* Added option privileged which defaults to false ([#23](https://github.com/test-kitchen/kitchen-docker/pull/23)) ([9284832](https://github.com/test-kitchen/kitchen-docker/commit/9284832))
|
|
440
|
+
* pre-release cleanup ([16a8caf](https://github.com/test-kitchen/kitchen-docker/commit/16a8caf))
|
|
441
|
+
|
|
442
|
+
## [0.9.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.8.1...v0.9.0) (2013-11-15)
|
|
443
|
+
|
|
444
|
+
* Support remote Docker ([#21](https://github.com/test-kitchen/kitchen-docker/pull/21)) ([c948a6e](https://github.com/test-kitchen/kitchen-docker/commit/c948a6e))
|
|
445
|
+
|
|
446
|
+
## [0.8.1](https://github.com/test-kitchen/kitchen-docker/compare/v0.8.0...v0.8.1) (2013-10-26)
|
|
447
|
+
|
|
448
|
+
* <https://github.com/portertech/kitchen-docker/graphs/contributors> ([70a2722](https://github.com/test-kitchen/kitchen-docker/commit/70a2722))
|
|
449
|
+
* force /sbin/initctl symlink, minor version bump ([8ccd795](https://github.com/test-kitchen/kitchen-docker/commit/8ccd795))
|
|
450
|
+
|
|
451
|
+
## [0.8.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.8.0.beta...v0.8.0) (2013-10-26)
|
|
452
|
+
|
|
453
|
+
* version bump, less boiler plate ([12bad52](https://github.com/test-kitchen/kitchen-docker/commit/12bad52))
|
|
454
|
+
|
|
455
|
+
## [0.8.0.beta](https://github.com/test-kitchen/kitchen-docker/compare/v0.7.1...v0.8.0.beta) (2013-10-26)
|
|
456
|
+
|
|
457
|
+
* Add a set of computed defaults for a couple of known platform names. ([#19](https://github.com/test-kitchen/kitchen-docker/pull/19)) ([69185c1](https://github.com/test-kitchen/kitchen-docker/commit/69185c1))
|
|
458
|
+
* default_image rewrite, version bump (beta) ([e09f5a5](https://github.com/test-kitchen/kitchen-docker/commit/e09f5a5))
|
|
459
|
+
|
|
460
|
+
## [0.7.1](https://github.com/test-kitchen/kitchen-docker/compare/v0.7.0...v0.7.1) (2013-10-09)
|
|
461
|
+
|
|
462
|
+
* keep upstart hack lines grouped ([de80bca](https://github.com/test-kitchen/kitchen-docker/commit/de80bca))
|
|
463
|
+
|
|
464
|
+
## [0.7.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.6.0...v0.7.0) (2013-10-09)
|
|
465
|
+
|
|
466
|
+
* /etc/hosts is ro ([#18](https://github.com/test-kitchen/kitchen-docker/pull/18)) ([2f6afa5](https://github.com/test-kitchen/kitchen-docker/commit/2f6afa5))
|
|
467
|
+
* no longer can nor should ensure the fqdn resolves ([126f730](https://github.com/test-kitchen/kitchen-docker/commit/126f730))
|
|
468
|
+
|
|
469
|
+
## [0.6.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.5.0...v0.6.0) (2013-10-07)
|
|
470
|
+
|
|
471
|
+
* readme edit, your -> the suite ([920cc37](https://github.com/test-kitchen/kitchen-docker/commit/920cc37))
|
|
472
|
+
* correct forward symbol typo ([#15](https://github.com/test-kitchen/kitchen-docker/pull/15)) ([3ba8cf2](https://github.com/test-kitchen/kitchen-docker/commit/3ba8cf2))
|
|
473
|
+
* tweaks to support the latest docker builds ([4e15329](https://github.com/test-kitchen/kitchen-docker/commit/4e15329))
|
|
474
|
+
|
|
475
|
+
## [0.5.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.4.0...v0.5.0) (2013-07-19)
|
|
476
|
+
|
|
477
|
+
* custom provision command(s), version bump ([bb0fde2](https://github.com/test-kitchen/kitchen-docker/commit/bb0fde2))
|
|
478
|
+
|
|
479
|
+
## [0.4.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.3.0...v0.4.0) (2013-07-17)
|
|
480
|
+
|
|
481
|
+
* Make sure we have lsb-release installed on debian systems. ([#7](https://github.com/test-kitchen/kitchen-docker/pull/7)) ([0cc1836](https://github.com/test-kitchen/kitchen-docker/commit/0cc1836))
|
|
482
|
+
* Adds support for using dockers memory limiter. ([#9](https://github.com/test-kitchen/kitchen-docker/pull/9)) ([83bf71a](https://github.com/test-kitchen/kitchen-docker/commit/83bf71a))
|
|
483
|
+
* Add options for cpu shares, custom dns, and data volumes. ([#11](https://github.com/test-kitchen/kitchen-docker/pull/11)) ([bc851fd](https://github.com/test-kitchen/kitchen-docker/commit/bc851fd))
|
|
484
|
+
* fixed json parsing, now works w/ "the-stretch" branch ([ff32bf2](https://github.com/test-kitchen/kitchen-docker/commit/ff32bf2))
|
|
485
|
+
* unnecessary default config options, readme white space ([ab3e0aa](https://github.com/test-kitchen/kitchen-docker/commit/ab3e0aa))
|
|
486
|
+
|
|
487
|
+
## [0.3.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.2.0...v0.3.0) (2013-06-24)
|
|
488
|
+
|
|
489
|
+
* Update test-kitchen dependency to 1.0.0.alpha7 ([#6](https://github.com/test-kitchen/kitchen-docker/pull/6)) ([ecc1db3](https://github.com/test-kitchen/kitchen-docker/commit/ecc1db3))
|
|
490
|
+
* specify host (public) ports for forward mappings ([a1d5b8f](https://github.com/test-kitchen/kitchen-docker/commit/a1d5b8f))
|
|
491
|
+
* driver config option to remove images, default to false, faster builds ([3305c9f](https://github.com/test-kitchen/kitchen-docker/commit/3305c9f))
|
|
492
|
+
* driver version bump ([1c806d5](https://github.com/test-kitchen/kitchen-docker/commit/1c806d5))
|
|
493
|
+
|
|
494
|
+
## [0.2.0](https://github.com/test-kitchen/kitchen-docker/compare/v0.1.3...v0.2.0) (2013-06-23)
|
|
495
|
+
|
|
496
|
+
* readme, example .kitchen.local.yml ([584e4d1](https://github.com/test-kitchen/kitchen-docker/commit/584e4d1))
|
|
497
|
+
* readme, document forward ([be49379](https://github.com/test-kitchen/kitchen-docker/commit/be49379))
|
|
498
|
+
* fixed image id parsing, multiple versions of docker ([51f7364](https://github.com/test-kitchen/kitchen-docker/commit/51f7364))
|
|
499
|
+
* fixed container ip parsing, inspect returns an array in newer versions ([038fd2e](https://github.com/test-kitchen/kitchen-docker/commit/038fd2e))
|
|
500
|
+
* fixed ip address parsing, IpAddress -> IPAddress :/ ([8e2ac8a](https://github.com/test-kitchen/kitchen-docker/commit/8e2ac8a))
|
|
501
|
+
* fixed rm container, need to stop a running container first ([142f05b](https://github.com/test-kitchen/kitchen-docker/commit/142f05b))
|
|
502
|
+
* driver version bump ([afeaaf8](https://github.com/test-kitchen/kitchen-docker/commit/afeaaf8))
|
|
503
|
+
|
|
504
|
+
## [0.1.3](https://github.com/test-kitchen/kitchen-docker/compare/v0.1.2...v0.1.3) (2013-05-15)
|
|
505
|
+
|
|
506
|
+
* rm contaianer instead of kill, #4 ([71c4e0d](https://github.com/test-kitchen/kitchen-docker/commit/71c4e0d))
|
|
507
|
+
* port forwarding, forward: - 22, #3 ([084d98e](https://github.com/test-kitchen/kitchen-docker/commit/084d98e))
|
|
508
|
+
* default to base image ([1d643be](https://github.com/test-kitchen/kitchen-docker/commit/1d643be))
|
|
509
|
+
* mention upstart issue in readme ([55d39fe](https://github.com/test-kitchen/kitchen-docker/commit/55d39fe))
|
|
510
|
+
* minor version bump ([a541275](https://github.com/test-kitchen/kitchen-docker/commit/a541275))
|
|
511
|
+
|
|
512
|
+
## [0.1.2](https://github.com/test-kitchen/kitchen-docker/compare/v0.1.1...v0.1.2) (2013-05-15)
|
|
513
|
+
|
|
514
|
+
* improved image support ([977174a](https://github.com/test-kitchen/kitchen-docker/commit/977174a))
|
|
515
|
+
* minor version bump ([261e569](https://github.com/test-kitchen/kitchen-docker/commit/261e569))
|
|
516
|
+
|
|
517
|
+
## [0.1.1](https://github.com/test-kitchen/kitchen-docker/compare/v0.1.1.dev...v0.1.1) (2013-05-15)
|
|
518
|
+
|
|
519
|
+
* readme, updated links ([d189281](https://github.com/test-kitchen/kitchen-docker/commit/d189281))
|
|
520
|
+
* verify_dependencies(), check for `docker` ([6551e7c](https://github.com/test-kitchen/kitchen-docker/commit/6551e7c))
|
|
521
|
+
* slowly updating the readme ([2b52278](https://github.com/test-kitchen/kitchen-docker/commit/2b52278))
|
|
522
|
+
* require_chef_omnibus defaults to `true` ([5dd6416](https://github.com/test-kitchen/kitchen-docker/commit/5dd6416))
|
|
523
|
+
* use config username and password in dockerfile ([fbfd29a](https://github.com/test-kitchen/kitchen-docker/commit/fbfd29a))
|
|
524
|
+
* readme, document image and platform ([9ac9dbf](https://github.com/test-kitchen/kitchen-docker/commit/9ac9dbf))
|
|
525
|
+
* release something ([f9332f8](https://github.com/test-kitchen/kitchen-docker/commit/f9332f8))
|
|
526
|
+
|
|
527
|
+
## [0.1.1.dev](https://github.com/test-kitchen/kitchen-docker/compare/v0.1.0.dev...v0.1.1.dev) (2013-05-15)
|
|
528
|
+
|
|
529
|
+
* dynamic dockerfile ([1bac53b](https://github.com/test-kitchen/kitchen-docker/commit/1bac53b))
|
|
530
|
+
* multi-platform support, debian & rhel ([cc71750](https://github.com/test-kitchen/kitchen-docker/commit/cc71750))
|
|
531
|
+
* UseDNS=no, ubuntu and centos "platform" aliases, ssh-keygen for rhel ([36ecca3](https://github.com/test-kitchen/kitchen-docker/commit/36ecca3))
|
|
532
|
+
* rhel openssh-clients (scp) and no pam ([5b24c5e](https://github.com/test-kitchen/kitchen-docker/commit/5b24c5e))
|
|
533
|
+
* roll another dev build ([fe33de9](https://github.com/test-kitchen/kitchen-docker/commit/fe33de9))
|
|
534
|
+
|
|
535
|
+
## 0.1.0.dev (2013-05-15)
|
|
536
|
+
|
|
537
|
+
* Initial commit ([b6d11af](https://github.com/test-kitchen/kitchen-docker/commit/b6d11af))
|
|
538
|
+
* kitchen driver create ([f4c03cd](https://github.com/test-kitchen/kitchen-docker/commit/f4c03cd))
|
|
539
|
+
* create an image, create a container, get its ip, let kitchen do its thing ([5597110](https://github.com/test-kitchen/kitchen-docker/commit/5597110))
|
|
540
|
+
* Style guideline updates ([#1](https://github.com/test-kitchen/kitchen-docker/pull/1)) ([5528799](https://github.com/test-kitchen/kitchen-docker/commit/5528799))
|
|
541
|
+
* sudo, localhost, chef install, destroy ([dc2a965](https://github.com/test-kitchen/kitchen-docker/commit/dc2a965))
|
|
542
|
+
* ensure hostname -f works for node.fqdn ([7b4415f](https://github.com/test-kitchen/kitchen-docker/commit/7b4415f))
|
|
543
|
+
* updated gemspec, homepage ([c0f410b](https://github.com/test-kitchen/kitchen-docker/commit/c0f410b))
|