forked from jpetazzo/container.training
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathchicago.html
85 lines (75 loc) · 3.18 KB
/
chicago.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
<html>
<head>
<title>Container Training</title>
<link rel="stylesheet" href="index.css">
<meta charset="UTF-8">
</head>
<body>
<div class="main">
<table>
<tr><td class="header" colspan="3">Container Training</td></tr>
<tr><td class="title" colspan="3">Week 1: Linux Containers, Docker, and Compose</td></tr>
<tr>
<td>Docker Part 1: Containers and Images</td>
<td><a class="slides" href="/docker.yml.html" /></td>
<td><a class="exercises" href="/docker.yml.html#exercises1" /></td>
</tr>
<tr>
<td>Docker Part 2: Networking, Compose for Devs</td>
<td><a class="slides" href="/docker.yml.html#part2" /></td>
<td><a class="exercises" href="/docker.yml.html#exercises1" /></td>
</tr>
<tr>
<td>Docker Bonus Sections</td>
<td><a class="slides" href="/docker.yml.html#bonus" /></td>
</tr>
<tr><td class="title" colspan="3">Week 2: Kubernetes</td></tr>
<tr>
<td>Kubernetes Part 1: Clusters, Pods, and Networking</td>
<td><a class="slides" href="/kubernetes.yml.html" /></td>
</tr>
<tr>
<td>Kubernetes Part 2: Declarative YAML, Rolling Updates, Health Checks</td>
<td><a class="slides" href="/kubernetes.yml.html#part2" /></td>
</tr>
<tr>
<td>Kubernetes Bonus Sections</td>
<td><a class="slides" href="/kubernetes.yml.html#bonus" /></td>
</tr>
<tr><td class="title" colspan="3">Week 3: Security, Workflows, and Advanced Topics</td></tr>
<tr>
<td>Image, Container, and Linux Security</td>
<td><a class="slides" href="/security.yml.html" /></td>
</tr>
<tr>
<td>Kubernetes Security, Container Implementation, and Workflows</td>
<td><a class="slides" href="/workflows.yml.html" /></td>
</tr>
<tr><td class="title" colspan="3">Lifetime Access To My Courses (signup this week)</td></tr>
<tr>
<td class="details">
Use coupon CHICAGO22 to signup on each of these Udemy courses, and gain lifetime access to hundreds of videos.
</td>
</tr>
<tr>
<td>Docker Mastery</td>
<td><a class="video" href="https://www.udemy.com/course/docker-mastery/?couponCode=CHICAGO22" /></td>
</tr>
<tr>
<td>Kubernetes Mastery</td>
<td><a class="video" href="https://www.udemy.com/course/kubernetesmastery/?couponCode=CHICAGO22" /></td>
</tr>
<tr>
<td>Docker for Node.js Projects</td>
<td><a class="video" href="https://www.udemy.com/course/docker-mastery-for-nodejs/?couponCode=CHICAGO22" /></td>
</tr>
<tr><td class="spacer"></td></tr>
<tr>
<td class="footer">
Reused with ♥️ from <a href="https://github.com/BretFisher/container.training">Open Source</a> Maintained by <a href="https://twitter.com/jpetazzo">@jpetazzo</a> and <a href="https://github.com/jpetazzo/container.training/graphs/contributors">others</a>.
</td>
</tr>
</table>
</div>
</body>
</html>