-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathKankuFile
More file actions
44 lines (36 loc) · 1.14 KB
/
KankuFile
File metadata and controls
44 lines (36 loc) · 1.14 KB
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
info:
summary: Kanku development jobs
description: |+
This KankuFile supports developers in
* developing kanku
* testing kanku
* setting up VMs for kanku in server/developer mode
The following jobs are available:
* sm: create tested kanku vm in server mode
* dm: create tested kanku vm in developer mode
* tm: create kanku vm in testing mode and run resonable test suites
* cl: cleanup - remove domains like `kanku destroy` does
(for usage in job_groups)
You can start each job separatly with:
`kanku up -j <job_name>`
Enjoy YLWK!
guest:
url: https://[% ctx.ipaddress %]/kanku/#/job_history/1
domain_name: kanku-devel
default_job: dm
jobs:
sm: !include KankuFile.d/server-mode.yml
dm: !include KankuFile.d/developer-mode.yml
tm: !include KankuFile.d/test.yml
cl:
-
use_module: Kanku::Handler::SetJobContext
-
use_module: Kanku::Handler::RemoveDomain
job_groups:
all:
- tm
- cl
- dm
- cl
- sm