-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
266 lines (181 loc) · 10.5 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="generator" content="Hugo 0.18.1" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<title>kodbasen</title>
<link href="http://larmog.github.io//css/font-awesome.min.css" rel="stylesheet">
<link href="http://larmog.github.io//css/materialize.min.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="http://larmog.github.io//css/style.css" type="text/css" rel="stylesheet" media="screen,projection,print"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/styles/default.min.css">
<style type="text/css">
footer.page-footer{background-image: url(http://larmog.github.io//images/kodbasenCover.jpg);}
</style>
</head>
<body>
<ul id="slide-out" class="side-nav">
<li><a href="http://larmog.github.io/"><i class="mdi-action-home left"></i>Home<i class="mdi-hardware-keyboard-arrow-right right"></i></a></li>
<li><a href="http://larmog.github.io//categories"><i class="mdi-action-perm-media left"></i>Categories<i class="mdi-hardware-keyboard-arrow-right right"></i></a></li>
<li><a href="http://larmog.github.io//tags"><i class="mdi-action-loyalty left"></i>Tags<i class="mdi-hardware-keyboard-arrow-right right"></i></a></li>
<li><a href="http://larmog.github.io//about"><i class="mdi-action-info-outline left"></i>About<i class="mdi-hardware-keyboard-arrow-right right"></i></a></li>
</ul>
<div id="index-banner" class="parallax-container">
<a data-activates="slide-out" class="btn-floating button-collapse" style="top: 5px; left: 5px;"><i class="mdi-navigation-menu"></i></a>
<div class="section no-pad-bot">
<div class="container">
<h1 class="header center teal-text text-lighten-2">kodbasen</h1>
<div class="row center">
<h5 class="header col s12 light">Where the compass is spinning around software</h5>
</div>
<div class="row center">
<a href="https://github.com/larmog"><img src="http://larmog.github.io//images/github2-dreamstale35.png"></a>
<a href="https://twitter.com/larmog"><img src="http://larmog.github.io//images/twitter-dreamstale71.png"></a>
<a href="https://www.linkedin.com/in/larmog"><img src="http://larmog.github.io//images/linkedin-dreamstale45.png"></a>
<a href="http://larmog.github.io//index.xml"><img src="http://larmog.github.io//images/feed-dreamstale27.png"></a>
</div>
</div>
</div>
<div class="parallax">
<img src="http://larmog.github.io//images/kodbasenCover.jpg">
</div>
</div>
<div class="container">
<div class="section">
<div class="row">
<div class="col m4 s12">
<div class="card">
<div class="card-content">
<h5><a href="http://larmog.github.io/2017/03/16/minio-simple-storage-for-your-cluster/">Minio, simple storage for your cluster</a></h5>
<p>
<a href="http://larmog.github.io//categories/development/">Development</a>
<a href="http://larmog.github.io//categories/kubernetes/">Kubernetes</a>
<a href="http://larmog.github.io//categories/docker/">Docker</a>
<a href="http://larmog.github.io//categories/cloud/">Cloud</a>
</p>
<p><p><em>(updated 2017-03-16)</em></p>
<p><img src="/media/minio-k8s.png" style="float:right;height:150px">
I’ve been using different volume types for storage in my <code>kubernetes-on-arm</code>
cluster. I wrote two posts about it: <a href="/2016/02/22/glusterfs-on-kubernetes-arm/">GlusterFS On Kubernetes ARM</a> and <a href="/2016/05/12/storage-for-your-cluster/">Storage for your cluster</a> a year ago. All solutions adds complexity
to the cluster, the one that’s been easiest to handle is <code>nfs</code>. But <code>nfs</code> isn’t transparent enough. I always seems to end up in strange corner cases where it’s
not working as expected. The <code>emptyDir</code> volume type let’s you mount an empty
directory from the host in to your Pod. But when the Pod goes away, so does your
volume, leaving you with nothing.
</p></p>
<p>
16 Mar 2017
<a href="http://larmog.github.io//tags/development/">#Development</a>
<a href="http://larmog.github.io//tags/docker/">#Docker</a>
<a href="http://larmog.github.io//tags/kubernetes/">#Kubernetes</a>
<a href="http://larmog.github.io//tags/minio/">#Minio</a>
<a href="http://larmog.github.io//tags/storage/">#Storage</a>
</p>
</div>
<div style="text-align: right;">
<a style="text-transform: none;" class="btn-flat blue-text text-lighten-2" href="http://larmog.github.io/2017/03/16/minio-simple-storage-for-your-cluster/">
Read more <i class="mdi-navigation-arrow-forward"></i>
</a>
</div>
</div>
</div>
<div class="col m4 s12">
<div class="card">
<div class="card-content">
<h5><a href="http://larmog.github.io/2016/10/28/installing-kubernetes-on-arm-with-kubeadm/">Installing Kubernetes on ARM with kubeadm</a></h5>
<p>
<a href="http://larmog.github.io//categories/development/">Development</a>
<a href="http://larmog.github.io//categories/kubernetes/">Kubernetes</a>
<a href="http://larmog.github.io//categories/docker/">Docker</a>
<a href="http://larmog.github.io//categories/arm/">ARM</a>
<a href="http://larmog.github.io//categories/raspberry-pi/">Raspberry PI</a>
</p>
<p><p>The tool <code>kubeadm</code> is an awesome tool for getting started with Kubernetes.
This short post shows you how to get started on <code>Raspberry Pi 3</code>.
</p></p>
<p>
28 Oct 2016
<a href="http://larmog.github.io//tags/development/">#Development</a>
<a href="http://larmog.github.io//tags/docker/">#Docker</a>
<a href="http://larmog.github.io//tags/kubernetes/">#Kubernetes</a>
<a href="http://larmog.github.io//tags/raspberry-pi/">#Raspberry PI</a>
<a href="http://larmog.github.io//tags/odroid/">#Odroid</a>
<a href="http://larmog.github.io//tags/arm/">#ARM</a>
</p>
</div>
<div style="text-align: right;">
<a style="text-transform: none;" class="btn-flat blue-text text-lighten-2" href="http://larmog.github.io/2016/10/28/installing-kubernetes-on-arm-with-kubeadm/">
Read more <i class="mdi-navigation-arrow-forward"></i>
</a>
</div>
</div>
</div>
<div class="col m4 s12">
<div class="card">
<div class="card-content">
<h5><a href="http://larmog.github.io/2016/10/15/kubernetes-on-scaleway---part-3/">Kubernetes on Scaleway - Part 3</a></h5>
<p>
<a href="http://larmog.github.io//categories/development/">Development</a>
<a href="http://larmog.github.io//categories/kubernetes/">Kubernetes</a>
<a href="http://larmog.github.io//categories/docker/">Docker</a>
<a href="http://larmog.github.io//categories/cloud/">Cloud</a>
</p>
<p><p>This is the final part in a series about setting up Kubernetes on <em>Scaleway</em>.
This final part is about setting up storage for your cluster.
<img src="/media/k8s-glusterfs-scaleway.png" style="float:right;height:150px">
Most of the steps here is already described in an earlier post:
<a href="/2016/02/22/glusterfs-on-kubernetes-arm/"><em>GlusterFS On Kubernetes ARM</em></a>
that I wrote a couple of month back. You can also find the earlier posts in this
series here:
<a href="/2016/08/17/setting-up-kubernetes-on-scaleway---part-1/"><em>Part 1</em></a>
and <a href="/2016/10/09/kubernetes-on-scaleway---part-1-revisited--2/"><em>Part 1 (revisited) and Part 2</em></a>.</p></p>
<p>
15 Oct 2016
<a href="http://larmog.github.io//tags/development/">#Development</a>
<a href="http://larmog.github.io//tags/docker/">#Docker</a>
<a href="http://larmog.github.io//tags/kubernetes/">#Kubernetes</a>
<a href="http://larmog.github.io//tags/glusterfs/">#GlusterFS</a>
<a href="http://larmog.github.io//tags/scaleway/">#Scaleway</a>
</p>
</div>
<div style="text-align: right;">
<a style="text-transform: none;" class="btn-flat blue-text text-lighten-2" href="http://larmog.github.io/2016/10/15/kubernetes-on-scaleway---part-3/">
Read more <i class="mdi-navigation-arrow-forward"></i>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s3 m1">
<a class="btn-floating btn-large disabled"><i class="mdi-navigation-arrow-back"></i></a>
</div>
<div class="col s6 m10 center"> </div>
<div class="col s3 m1">
<a class="btn-floating btn-large waves-effect waves-light" href="/page/2/"><i class="mdi-navigation-arrow-forward"></i></a>
</div>
</div>
</div>
</div>
<footer class="page-footer">
<div class="footer-copyright">
<div class="container">
Copyright © 2016 by larmog
<div class="right">Design <a class="grey-text text-lighten-4" href="http://pdevty.github.io/blog/">pdevty</a></div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="http://larmog.github.io//js/materialize.min.js"></script>
<script src="http://larmog.github.io//js/init.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-73372924-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>