-
Notifications
You must be signed in to change notification settings - Fork 133
/
.kitchen.do.yml
55 lines (53 loc) · 1.49 KB
/
.kitchen.do.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
driver:
name: digitalocean
size: s-1vcpu-1gb
region: nyc3
transport:
ssh_key: '~/.ssh/id_rsa'
max_wait_until_ready: 30
platforms:
- name: centos-7
driver_config:
image: centos-7-x64
- name: centos-stream-8
driver_config:
image: centos-stream-8-x64
- name: centos-stream-9
driver_config:
image: centos-stream-9-x64
- name: almalinux-8
driver_config:
image: almalinux-8-x64
- name: almalinux-9
driver_config:
image: almalinux-9-x64
- name: rockylinux-8
driver_config:
image: rockylinux-8-x64
- name: rockylinux-9
driver_config:
image: rockylinux-9-x64
- name: fedora-37
driver_config:
image: fedora-37-x64
- name: fedora-38
driver_config:
image: fedora-38-x64
- name: debian-10
driver_config:
image: debian-10-x64
lifecycle:
post_create:
- remote: sleep 10; while pgrep apt-get >/dev/null; do echo "Waiting for apt-get..."; sleep 5; done # let the installation of DO droplet-agent to finish and unlock dpkg
- name: debian-11
driver_config:
image: debian-11-x64
lifecycle:
post_create:
- remote: sleep 10; while pgrep apt-get >/dev/null; do echo "Waiting for apt-get..."; sleep 5; done # let the installation of DO droplet-agent to finish and unlock dpkg
- name: ubuntu-20-04
driver_config:
image: ubuntu-20-04-x64
lifecycle:
post_create:
- remote: sleep 10; while pgrep apt-get >/dev/null; do echo "Waiting for apt-get..."; sleep 5; done # let the installation of DO droplet-agent to finish and unlock dpkg