-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
237 lines (195 loc) · 6.59 KB
/
index.html
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>dev {highload} 2013</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/night.css" id="theme">
<link rel="stylesheet" href="css/presentation.css">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<style>
.reveal pre {
font-size: 1em;
width: 100%;
overflow: hidden;
}
.reveal pre code {
max-height: 500px;
overflow: hidden;
}
</style>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Как правильно готовить<br/>вместе с Chef</h2>
<p>
<small>Created by <a href="http://github.com/foodtaster">foodtaster</a></small>
<br/>
<small>hospital-systems/waveaccess</small>
<br/>
<small>2013 <a href="http://dev.it-portfolio.net/main.html">dev {highload} 2013</a></small>
</p>
</section>
<section data-markdown>
<script type="text/template">
### Николай Рыжиков & Михаил Лапшин
![choice.png](choice.png)
@ choice-hospital-systems/waveaccess
</script>
</section>
<section data-markdown>
<script type="text/template">
## 1: N+1 changes
* devs
* CI
* staging
* production
</script>
</section>
<section data-markdown>
<script type="text/template">
## 2: Трамвайно - зависимая инфраструктура
![tram](tram.jpg)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Infrastructure.as_a(Code)
![iac](inf-as-code.png)
</script>
</section>
<section data-markdown>
<script type="text/template">
![chef](chef.png)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Как устроен chef
![chef](chef-architecture.png)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Chef run
* Run as super user
* загрузка node attributes
* загрузка cookbooks from run_list
* вычисление желаемого и текущего состояния
* приведение ноды в желаемое состояние
* сохранение аттрибутов ноды на сервер
</script>
</section>
<section data-markdown>
<script type="text/template">
## Workflow
![chef](chef-cloud.png)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Как начать?
![chef](sandbox.jpeg)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Virtualization
![chef](vbox.png)
</script>
</section>
<section data-markdown>
<script type="text/template">
## [Vagrant](http://www.vagrantup.com/)
```
Vagrant::Config.run do |config|
config.vm.box = "precise64"
config.vm.network :private_network, ip: ip
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = ["cookbooks", "site-cookbooks"]
chef.add_recipe "pg"
chef.json = { :users => ['testuser'] }
chef.log_level = :debug
end
end
```
</script>
</section>
<section data-markdown>
<script type="text/template">
## Vagrant & Chef
* vagrant up vm0
* vagrant provision vm0
* vagrant ssh vm0
* vagrant destroy vm0
</script>
</section>
<section data-markdown>
<script type="text/template">
## TDD & CI
![tdd](red-green-refactor.jpg)
</script>
</section>
<section data-markdown>
<script type="text/template">
## [Foodtaster](https://github.com/foodtaster)
### Chef + Vagrant + Rspec = Foodtaster
![foodtaster](foodtaster.png)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Test your cookbooks
```
describe "nginx::default" do
run_chef_on :vm0 do |c|
c.json = {}
c.add_recipe 'nginx'
end
it "should install nginx as a daemon" do
vm0.should have_package 'nginx'
vm0.should have_user('www-data')
.in_group('www-data')
vm0.should have_running_process('nginx')
vm0.should listen_port(80)
end
end
```
</script>
</section>
<section data-markdown>
<script type="text/template">
## Как это работает?
![Foodtaster Architecture](foodtaster-arch.png)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Links
* [foodtaster](https://github.com/foodtaster)
* [workshop](https://github.com/foodtaster/chef-workshop)
</script>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script src="js/slides.js"></script>
<a href="https://github.com/foodtaster/dev-highload-2013"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
</body>
</html>