Skip to content

Commit

Permalink
Fixes #4: Add episodes overview, updates for Episode 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Nov 24, 2020
1 parent 8148032 commit cc38c4a
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 1 deletion.
4 changes: 3 additions & 1 deletion episode-02/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

Date: November 25, 2020

Video URL: TODO
Video URL: https://www.youtube.com/watch?v=AHDrejEv0SM

Web page for episode: TBD

Outline:

Expand Down
22 changes: 22 additions & 0 deletions site/_posts/2020-11-12-kubernetes-101-episode-list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Kubernetes 101 Episode List"
date: 2020-11-12 10:10:00 -0600
categories: announcements
layout: post
---
Click on an episode title to go to its web page with more information about the episode. Click on the links to watch the episode on YouTube or view and run examples from the episode.

| # | Air Date | Title | Links |
| :--- | :--- | :--- | :--- |
| 1 | Nov 18, 2020 | [**Hello, Kubernetes!**](https://kube101.jeffgeerling.com/2020/episode-1-hello-kubernetes) | [Video](https://www.youtube.com/watch?v=IcslsH7OoYo), [Examples](https://github.com/geerlingguy/kubernetes-101/tree/master/episode-01) |
| 2 | Nov 25, 2020 | **Containers** | [Video](https://www.youtube.com/watch?v=AHDrejEv0SM), [Examples](https://github.com/geerlingguy/kubernetes-101/blob/master/episode-02) |
| 3 | Dec 2, 2020 | **Deploying Apps** | TBD |
| 4 | Dec 9, 2020 | **Real-world apps** | TBD |
| 5 | Dec 16, 2020 | **Scaling a Drupal Deployment** | TBD |
| 6 | Jan 6, 2021 | **Hello, Operator!** | TBD |
| 7 | Jan 13, 2021 | **Kube, Meet Pi** | TBD |
| 8 | Jan 20, 2021 | **TBD** | TBD |
| 9 | Jan 27, 2021 | **TBD** | TBD |
| 10 | Feb 3, 2021 | **TBD** | TBD |

View all the episodes in the [Kubernetes 101 Playlist](https://www.youtube.com/playlist?list=PL2_OBreMn7FoYmfx27iSwocotjiikS5BD) on YouTube.
30 changes: 30 additions & 0 deletions site/_posts/2020-11-25-episode-2-containers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
title: "Episode 2: Containers"
date: 2020-11-25 08:40:00 -0600
categories: episodes, containers, docker
layout: post
---
[Episode 2](https://www.youtube.com/watch?v=AHDrejEv0SM) of Kubernetes 101 is here! The episode was streamed live on November 25, 2020, but you can view the video on-demand, free forever—just click the image below:

<div style="text-align: center;" class="thumb-wrapper">
<a href="https://www.youtube.com/watch?v=AHDrejEv0SM">
<img src="/assets/images/episode-02.jpg" width="600" height="338" alt="Kubernetes 101 - Episode 2 - Containers" class="parent-img-responsive"><span></span>
</a>
</div>

### Topics Covered in this Episode

- Why does Kubernetes use containers?
- How do you build a container?
- Build a simple Go app
- Run the Go app directly
- Run the Go app in a container
- Push the Go app to an image registry

### Examples from this Episode

TODO.

### Don't miss out!

All the episodes are being live streamed on Wednesdays on [Jeff Geerling's YouTube channel](https://www.youtube.com/c/JeffGeerling)—subscribe so you don't miss it!
9 changes: 9 additions & 0 deletions site/assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ body {
color: #222;
}

table {
border: none;
margin-bottom: 1em;
}

td, th {
padding: 1px 5px;
}

header .site-title {
font-family: 'Myriad Pro', 'Helvetica Neue', Helvetica, Arial, serif;
font-weight: bold;
Expand Down

0 comments on commit cc38c4a

Please sign in to comment.