kitchen-docker 2.14.0 → 2.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/lib/kitchen/docker/docker_version.rb +1 -1
- data/lib/kitchen/docker/helpers/dockerfile_helper.rb +14 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a90dcbcb9d7867d3600976b04316ebc8bb26edc05c67913a539748bac45c52a
|
4
|
+
data.tar.gz: 582e8c53e995ec7d772a8d8580f582edbbff4a64648fc4e5ac41d657c40a2a59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 121b7a903fe8748c082b9746ed47df1a159652345f1a2e0c26aef04cf1f07e6c69b82b18fa3ab49ed17b93bddfbae69f32bb3839ccb41d3f8ffde9654bf574df
|
7
|
+
data.tar.gz: be747b9b96ea67b8848f25ad77d68edf5272201daafeb3f5f93902ceac7e2899322db2ebd5bed75682a81dafa4e85642d2872efb7ad4a9f9479f8cfe2f1de627
|
data/CHANGELOG.md
CHANGED
@@ -34,12 +34,14 @@ module Kitchen
|
|
34
34
|
gentoo_paludis_platform
|
35
35
|
when 'opensuse/tumbleweed', 'opensuse/leap', 'opensuse', 'sles'
|
36
36
|
opensuse_platform
|
37
|
-
when 'rhel', 'centos', 'oraclelinux', 'amazonlinux'
|
37
|
+
when 'rhel', 'centos', 'oraclelinux', 'amazonlinux'
|
38
38
|
rhel_platform
|
39
39
|
when 'centosstream'
|
40
40
|
centosstream_platform
|
41
41
|
when 'almalinux'
|
42
42
|
almalinux_platform
|
43
|
+
when 'rockylinux'
|
44
|
+
rockylinux_platform
|
43
45
|
when 'photon'
|
44
46
|
photonos_platform
|
45
47
|
else
|
@@ -105,7 +107,7 @@ module Kitchen
|
|
105
107
|
def opensuse_platform
|
106
108
|
<<-CODE
|
107
109
|
ENV container docker
|
108
|
-
RUN zypper install -y sudo openssh which curl
|
110
|
+
RUN zypper install -y sudo openssh which curl gawk
|
109
111
|
RUN /usr/sbin/sshd-gen-keys-start
|
110
112
|
CODE
|
111
113
|
end
|
@@ -140,6 +142,16 @@ module Kitchen
|
|
140
142
|
CODE
|
141
143
|
end
|
142
144
|
|
145
|
+
def rockylinux_platform
|
146
|
+
<<-CODE
|
147
|
+
ENV container docker
|
148
|
+
RUN yum clean all
|
149
|
+
RUN yum install -y sudo openssh-server openssh-clients which
|
150
|
+
RUN [ -f "/etc/ssh/ssh_host_rsa_key" ] || ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
|
151
|
+
RUN [ -f "/etc/ssh/ssh_host_dsa_key" ] || ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N ''
|
152
|
+
CODE
|
153
|
+
end
|
154
|
+
|
143
155
|
def photonos_platform
|
144
156
|
<<-CODE
|
145
157
|
ENV container docker
|
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: 2.
|
4
|
+
version: 2.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sean Porter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-kitchen
|