forked from juliandunn/katello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.cloud.yml
49 lines (43 loc) · 1.03 KB
/
.kitchen.cloud.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
---
driver_config:
digitalocean_client_id: <%= ENV['DIGITAL_OCEAN_CLIENT_ID'] %>
digitalocean_api_key: <%= ENV['DIGITAL_OCEAN_API_KEY'] %>
provisioner:
name: chef_zero
require_chef_omnibus: latest
platforms:
- name: centos-6.5
driver_plugin: digitalocean
driver_config:
image_id: 3448641
flavor_id: 64
region_id: 4
ssh_key_ids: <%= ENV['DIGITAL_OCEAN_SSH_KEY_IDS'] %>
ssh_key: <%= ENV['DIGITAL_OCEAN_SSH_KEY_PATH'] %>
- name: fedora-19
driver_plugin: digitalocean
driver_config:
flavor_id: 64
region_id: 4
ssh_key_ids: <%= ENV['DIGITAL_OCEAN_SSH_KEY_IDS'] %>
ssh_key: <%= ENV['DIGITAL_OCEAN_SSH_KEY_PATH'] %>
attributes:
java:
jdk_version: 7
suites:
- name: server
run_list:
- recipe[fqdn]
- recipe[katello]
attributes:
machine_fqdn: katello.example.com
fqdn_as_hostname: true
- name: server-with-foreman
run_list:
- recipe[fqdn]
- recipe[katello]
attributes:
katello:
enable_foreman: true
machine_fqdn: katello.example.com
fqdn_as_hostname: true