forked from gophergala/go_ne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kiss.yml
85 lines (80 loc) · 1.64 KB
/
.kiss.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
# agent:
# path: "./agent"
# force: true
# plugins:
# apt:
# path: "./plugins/plugin-apt"
# force: true
# shell:
# path: "./plugins/plugin-shell"
# force: true
# Global vars
vars:
application: go-example-app
version: 0.1
# Hosts
hosts:
- host: localhost
description: "Foo"
user: vagrant
private_key: .vagrant/machines/default/virtualbox/private_key
port: 2222
roles:
- docker
- db
tasks:
- task: test
description: Creates a temporary file
shell:
command: rm /tmp/kiss.ftw
# Role specific tasks
roles:
common:
description: "Common"
tasks:
- task: Common task
shell:
command: whoami
docker:
tasks:
- task: Upgrade kernel
apt:
sudo: true
update: true
packages:
- linux-image-generic-lts-trusty
- apparmor
- task: Reboot system
shell:
sudo: true
command: shutdown -r now "triggered by kiss"
wait_after: 15
- task: Install wget
apt:
sudo: true
update: true
packages:
- wget
- task: Download and install docker
shell:
command: wget -qO- https://get.docker.com/ | sh
db:
description: "DB role"
with: [common]
tasks:
- task: Install MySQL
apt:
update: true
sudo: true
packages:
- mysql-server
# Global tasks
tasks:
- task: env
description: Get environment information
shell:
command: env
- task: go
description: Get go version
shell:
command: go version