forked from ritazh/devopsfun
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·251 lines (227 loc) · 7.85 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>DevOpsFun by ritazh</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="assets/css/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="assets/css/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="assets/css/github-light.css" media="screen">
</head>
<body>
<section class="page-header">
<h1 class="project-name">DevOpsFun</h1>
<h2 class="project-tagline">Introductory Hands-on Training for Open Source DevOps Workflow</h2>
<a href="https://github.com/ritazh/devopsfun" class="btn">View on GitHub</a>
<a href="https://github.com/ritazh/devopsfun/zipball/gh-pages" class="btn">Download .zip</a>
<a href="https://github.com/ritazh/devopsfun/tarball/gh-pages" class="btn">Download .tar.gz</a>
</section>
<section class="main-content">
<h3>
<a id="welcome-to-github-pages" class="anchor" href="#welcome-to-github-pages" aria-hidden="true"><span class="octicon octicon-link"></span></a>Welcome to DevOpsFun Training!</h3>
<p>These notes accompany the hands-on training for open source devops workflow. Feel free to report issues or submit a request to our <a href="https://github.com/ritazh/devopsfun/issues">GitHub repo</a>.
</p>
<p>
At the end of this training, you will be able to:
<ul>
<li>
Understand the basics of Node, npm modules, and how they work together
</li>
<li>
Know basic practices of using Git and fundamentals of how Git works
</li>
<li>
Use Visual Studio Code for development
</li>
<li>
Use an open source platform to continuously deploy and test your app
</li>
<li>
Use an open source continous integration solution to continuously build, test, and deploy your app
</li>
<li>
Use an open source platform to scale your app
</li><!--
<li>
</li>
<li>
</li>
<li>
</li>
<li>
</li>
<li>
</li> -->
</ul>
</p>
<div>
<div>
<div>Module 0: Preparation</div>
<div>
<a class="post-link" href="installing-node/">
Installing Node.js
</a>
</div>
<div>
<a href="installing-git/">
Signing up for a GitHub Account and installing Git
</a>
</div>
<div>
<a href="installing-vscode/">
Installing Visual Studio Code
</a>
</div>
</div>
<br/>
<div>
<div>Module 1: Developing App</div>
<div>
<a class="post-link" href="node-app/">
Building a Node.js App
</a>
</div>
<div>
<a class="post-link" href="node-app/#installing-mongodb">
Installing MongoDB
</a>
</div>
<div>
<a class="post-link" href="node-app/#running-the-app">
Running the App
</a>
</div>
</div>
<br/>
<div>
<div>Module 2: Provisioning Platform for Development and Testing</div>
<div>
<a class="post-link" href="provisioning-platform/">
Adding Test Environment for your App
</a>
</div>
<div>
<a class="post-link" href="provisioning-platform/#provisioning-resources-for-dokku-on-azure">
Provisioning Resources for Dokku on Azure
</a>
</div>
<div>
<a class="post-link" href="provisioning-platform/#configuring-dokku">
Configuring Dokku
</a>
</div>
</div>
<br/>
<div>
<div>Module 3: Deploying App</div>
<div>
<a class="post-link" href="deploying-app/">
Creating an Application
</a>
</div>
<div>
<a class="post-link" href="deploying-app/#adding-mongodb">
Adding MongoDB
</a>
</div>
<div>
<a href="deploying-app/#git-push-to-deploy">
Git Push to Deploy
</a>
</div>
</div>
<br/>
<div>
<div>Module 4: Provisioning Continuous Integration Server</div>
<div>
<a class="post-link" href="continuous-integrate/">
Adding CI Solution
</a>
</div>
<div>
<a href="continuous-integrate/#provisioning-resources-for-jenkins-on-azure">
Provisioning Resources for Jenkins on Azure
</a>
</div>
<div>
<a class="post-link" href="continuous-integrate/#configuring-jenkins-security">
Configuring Jenkins Security
</a>
</div>
</div>
<br/>
<div>
<div>Module 5: Continuously Integrating and Deploying an App</div>
<div>
<a class="post-link" href="continuous-deploy-app/">
Adding CI Pipeline for Your App
</a>
</div>
<div>
<a href="continuous-deploy-app/#installing-plugins">
Installing Plugins
</a>
</div>
<div>
<a href="continuous-deploy-app/#integrating-with-github">
Integrating with GitHub
</a>
</div>
<div>
<a href="continuous-deploy-app/#creating-a-jenkins-job">
Creating a Jenkins Job
</a>
</div>
<div>
<a href="continuous-deploy-app/#setting-up-node">
Setting up Node
</a>
</div>
<div>
<a href="continuous-deploy-app/#exposing-build-badges">
Exposing Build Badges
</a>
</div>
<div>
<a href="continuous-deploy-app/#configuring-jenkins-to-deploy-to-dokku">
Configuring Jenkins to Deploy to Dokku
</a>
</div>
<div>
<a href="continuous-deploy-app/#configuring-job-to-push-updates-to-dokku">
Configuring Job to Push Updates to Dokku
</a>
</div>
</div>
<br/>
<div>
<div>Module 6: Managing App</div>
<div>
<a class="post-link" href="managing-app/">
Scaling App
</a>
</div>
<div>
<a href="managing-app/#adding-a-domain">
Adding a Domain
</a>
</div>
</div>
</div>
<footer class="site-footer">
<span class="site-footer-owner"><a href="https://github.com/ritazh/devopsfun">Devopsfun</a> is maintained by <a href="https://github.com/ritazh">ritazh</a>.</span>
</footer>
</section>
<!-- Asynchronous Google Analytics snippet -->
<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-72395143-1', 'auto');
ga('require', 'linkid', 'linkid.js');
ga('send', 'pageview');
</script>
</body>
</html>