forked from aws/aws-parallelcluster-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen.docker.yml
84 lines (79 loc) · 3.5 KB
/
kitchen.docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
driver:
name: dokken
platform: linux/amd64
pull_platform_image: false # Use the local images, prevent pull of docker images from Docker Hub,
chef_version: 18 # Chef version aligned with the one used to build the images
chef_image: cincproject/cinc
env:
# Since the kernel version of the docker images is not in the expected pattern,
# KERNEL_RELEASE is set in the environment to override the system value.
- KERNEL_RELEASE=3.10.0-1160.42.2.el7.x86_64
provisioner:
name: dokken
product_name: cinc
chef_binary: /opt/cinc/bin/cinc-client
attributes:
virtualized: true
transport:
name: dokken
verifier:
name: inspec
lifecycle:
post_verify:
- local: |
echo "KITCHEN_SAVE_IMAGE=${KITCHEN_SAVE_IMAGE}"
[ "${KITCHEN_SAVE_IMAGE}" = true ] || exit 0
docker_id=$(docker ps -a | grep ${KITCHEN_INSTANCE_NAME} | awk '{ print $1 }')
docker commit ${docker_id} pcluster-${KITCHEN_PHASE}/${KITCHEN_INSTANCE_NAME}:latest
platforms:
- name: alinux2
driver:
image: <% if ENV['KITCHEN_ALINUX2_IMAGE'] %> <%= ENV['KITCHEN_ALINUX2_IMAGE'] %> <% else %> dokken/amazonlinux-2 <% end %>
attributes:
cluster:
base_os: alinux2
- name: centos7
driver:
image: <% if ENV['KITCHEN_CENTOS7_IMAGE'] %> <%= ENV['KITCHEN_CENTOS7_IMAGE'] %> <% else %> dokken/centos-7 <% end %>
attributes:
cluster:
base_os: centos7
# Since the kernel version of the docker images is not in the expected pattern, set a fake kernel value to permit to install Lustre on docker.
kernel_release: '3.10.0-1160.76.1.el7.fake-value'
- name: ubuntu2004
driver:
image: <% if ENV['KITCHEN_UBUNTU2004_IMAGE'] %> <%= ENV['KITCHEN_UBUNTU2004_IMAGE'] %> <% else %> dokken/ubuntu-20.04 <% end %>
attributes:
cluster:
base_os: ubuntu2004
# Since the kernel version of the docker images is not compatible (6.2.0-1016-azure), set a fake kernel value to permit to install Lustre on docker.
kernel_release: '5.15.0-1028-aws'
- name: ubuntu2204
driver:
image: <% if ENV['KITCHEN_UBUNTU2204_IMAGE'] %> <%= ENV['KITCHEN_UBUNTU2204_IMAGE'] %> <% else %> dokken/ubuntu-22.04 <% end %>
attributes:
cluster:
base_os: ubuntu2204
# Since the kernel version of the docker images is not compatible (6.2.0-1016-azure), set a fake kernel value to permit to install Lustre on docker.
kernel_release: '5.15.0-1028-aws'
- name: rhel8
driver:
image: <% if ENV['KITCHEN_RHEL8_IMAGE'] %> <%= ENV['KITCHEN_RHEL8_IMAGE'] %> <% else %> registry.access.redhat.com/ubi8/ubi <% end %>
intermediate_instructions:
- RUN chmod +t /tmp
attributes:
cluster:
base_os: rhel8
# Since the kernel version of the docker images is not in the expected pattern, set a fake kernel value to permit to install Lustre on docker.
# Specific kernel versions are not compatible with Lustre.
kernel_release: '4.18.0-477.13.1.el8_7.fake-value' # Use 477 version to match 8.8 kernel version available on docker
- name: rocky8
driver:
image: <% if ENV['KITCHEN_ROCKY8_IMAGE'] %> <%= ENV['KITCHEN_ROCKY8_IMAGE'] %> <% else %> dokken/rockylinux-8 <% end %>
attributes:
cluster:
base_os: rocky8
# Since the kernel version of the docker images is not in the expected pattern, set a fake kernel value to permit to install Lustre on docker.
# Specific kernel versions are not compatible with Lustre.
kernel_release: '4.18.0-477.10.1.el8_8.fake-value'