kitchen-docker 3.2.3 → 3.2.4
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebac258abf8eee0f609f6a779759035f61cf02ded630abd813740112cb4e1730
|
|
4
|
+
data.tar.gz: 24844ad279e2b3baf5d44c08211e0c4c70a1c66950ce2e3db12ced167f4becc5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96327f5340b2ef75abcb004555242441117c148442582d3d91b43b970bb89db09ce02606cc090f45b6976bf02d5be7420667470be9d2351c39c5fd63f4cb4128
|
|
7
|
+
data.tar.gz: 69d1caecb022affa9bf59690a25275a3f040167e46f799c9c7278f817c73c8cfb7baaa894168eb4b305e93f301fd041db6b133e48fc2bd38df9404a92957e28a
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Future CHANGELOG notes will be in GitHub release notes
|
|
4
4
|
|
|
5
|
+
## [3.2.4](https://github.com/test-kitchen/kitchen-docker/compare/v3.2.3...v3.2.4) (2026-07-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* Avoid curl conflict with RHEL ubi in dockerfile helper ([#458](https://github.com/test-kitchen/kitchen-docker/issues/458)) ([028ce4c](https://github.com/test-kitchen/kitchen-docker/commit/028ce4c6ebdde7727f0e8aea7ae1a998f73f6eb8))
|
|
11
|
+
|
|
5
12
|
## [3.2.3](https://github.com/test-kitchen/kitchen-docker/compare/v3.2.2...v3.2.3) (2026-06-25)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -111,7 +111,8 @@ module Kitchen
|
|
|
111
111
|
<<-CODE
|
|
112
112
|
ENV container=docker
|
|
113
113
|
RUN yum clean all
|
|
114
|
-
RUN yum install -y sudo openssh-server openssh-clients which
|
|
114
|
+
RUN yum install -y sudo openssh-server openssh-clients which
|
|
115
|
+
RUN which curl || yum install -y curl
|
|
115
116
|
RUN [ -f "/etc/ssh/ssh_host_rsa_key" ] || ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
|
|
116
117
|
CODE
|
|
117
118
|
end
|
|
@@ -61,9 +61,10 @@ describe Kitchen::Docker::Helpers::DockerfileHelper do
|
|
|
61
61
|
expect(result).not_to include("--allowerasing")
|
|
62
62
|
end
|
|
63
63
|
|
|
64
|
-
it "installs required packages including curl" do
|
|
64
|
+
it "installs required packages including curl if needed" do
|
|
65
65
|
result = helper.rhel_platform
|
|
66
|
-
expect(result).to include("sudo openssh-server openssh-clients which
|
|
66
|
+
expect(result).to include("sudo openssh-server openssh-clients which")
|
|
67
|
+
expect(result).to include("which curl || yum install -y curl")
|
|
67
68
|
end
|
|
68
69
|
end
|
|
69
70
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-docker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Porter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-07-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|