forked from saltstack-formulas/salt-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen.vagrant.yml
101 lines (100 loc) · 3.08 KB
/
kitchen.vagrant.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
driver:
name: vagrant
cache_directory: false
customize:
usbxhci: 'off'
gui: false
ssh:
shell: /bin/sh
linked_clone: true
<% unless ENV['CI'] %>
synced_folders:
- - '.kitchen/kitchen-vagrant/%{instance_name}/vagrant'
- '/vagrant'
- 'create: true, disabled: false'
<% end %>
platforms:
- name: freebsd-130-master-py3
driver:
box: myii/freebsd-13.0-master-py3
verifier:
inputs:
saltmajorversion: 3004
- name: freebsd-123-master-py3
driver:
box: myii/freebsd-12.3-master-py3
verifier:
inputs:
saltmajorversion: 3004
- name: freebsd-130-3004-0-py3
driver:
box: myii/freebsd-13.0-3004.0-py3
verifier:
inputs:
saltmajorversion: 3004
- name: freebsd-123-3004-0-py3
driver:
box: myii/freebsd-12.3-3004.0-py3
verifier:
inputs:
saltmajorversion: 3004
- name: openbsd-70-3003-3-py3
driver:
box: myii/openbsd-7.0-3003.3-py3
ssh:
shell: /bin/ksh
synced_folders: []
verifier:
inputs:
saltmajorversion: 3003
- name: windows-10-latest-py3
driver:
box: techneg/win10x64-pro-salt
cache_directory: "/omnibus/cache"
customize: {}
ssh: {}
provisioner:
# yamllint disable rule:line-length
init_environment: |
# Workaround to allow `kitchen converge` to be used multiple times
# without having to `kitchen destroy` first: remove state files cached by
# Salt during the previous `converge` (if present)
rm -recurse `
C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base `
-ErrorAction SilentlyContinue
salt-call --local state.single file.managed `
C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\salt-minion.sls `
source=https://github.com/saltstack/salt-winrepo-ng/raw/master/salt-minion.sls `
skip_verify=True makedirs=True
exit 0
# yamllint enable rule:line-length
verifier:
inputs:
saltmajorversion: 3004
- name: windows-81-latest-py3
driver:
box: techneg/win81x64-pro-salt
cache_directory: "/omnibus/cache"
customize: {}
ssh: {}
provisioner:
# yamllint disable rule:line-length
init_environment: |
# Workaround to allow `kitchen converge` to be used multiple times
# without having to `kitchen destroy` first: remove state files cached by
# Salt during the previous `converge` (if present)
rm -recurse `
C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base `
-ErrorAction SilentlyContinue
salt-call --local state.single file.managed `
C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\salt-minion.sls `
source=https://github.com/saltstack/salt-winrepo-ng/raw/master/salt-minion.sls `
skip_verify=True makedirs=True
exit 0
# yamllint enable rule:line-length
verifier:
inputs:
saltmajorversion: 3004