|
73 | 73 | <td align="center"><a href="#mongo"><img src="images/mongo.png" width="75px;" height="75px;" alt="Mongo"/><br /><b>Mongo</b></a></td>
|
74 | 74 | <td align="center"><a href="#puppet"><img src="images/puppet.png" width="75px;" height="75px;" alt="puppet"/><br /><b>Puppet</b></a></td>
|
75 | 75 | <td align="center"><a href="#distributed"><img src="images/distributed.png" width="110px;" height="75px;" alt="Distributed"/><br /><b>Distributed</b></a></td>
|
76 |
| - <td align="center"><a href="#questions-you-ask"><img src="images/you.png" width="110px;" height="75px;" alt="you"/><br /><b>Questions you can ask</b></a></td> |
| 76 | + <td align="center"><a href="#questions-you-ask"><img src="images/you.png" width="90px;" height="75px;" alt="you"/><br /><b>Questions you can ask</b></a></td> |
77 | 77 | </tr>
|
78 | 78 | </table>
|
79 | 79 | </center>
|
@@ -5220,7 +5220,9 @@ Because each container has its own writable container layer, and all changes are
|
5220 | 5220 |
|
5221 | 5221 | |Name|Topic|Objective & Instructions|Solution|Comments|
|
5222 | 5222 | |--------|--------|------|----|----|
|
5223 |
| -|My First Pod|Dockerfile|WIP|WIP |
| 5223 | +| My First Pod | Pods | [Exercise](exercises/kubernetes/pods_01.md) | [Solution](exercises/kubernetes/solutions/pods_01_solution.md) |
| 5224 | +| Creating a service | Service | [Exercise](exercises/kubernetes/services_01.md) | [Solution](exercises/kubernetes/solutions/services_01_solution.md) |
| 5225 | + |
5224 | 5226 |
|
5225 | 5227 | ### Kubernetes Self Assesment
|
5226 | 5228 |
|
@@ -6342,13 +6344,15 @@ View more [here](https://www.youtube.com/watch?v=rDCWxkvPlAw)
|
6342 | 6344 | <details>
|
6343 | 6345 | <summary>What is Helm?</summary><br><b>
|
6344 | 6346 |
|
6345 |
| -Package manager for Kubernetes. Basically the ability to package YAML files and distribute them to other users. |
| 6347 | +Package manager for Kubernetes. Basically the ability to package YAML files and distribute them to other users and apply them in different clusters. |
6346 | 6348 | </b></details>
|
6347 | 6349 |
|
6348 | 6350 | <details>
|
6349 | 6351 | <summary>Why do we need Helm? What would be the use case for using it?</summary><br><b>
|
6350 | 6352 |
|
6351 |
| -Sometimes when you would like to deploy a certain application to your cluster, you need to create multiple YAML files / Components like: Secret, Service, ConfigMap, etc. This can be tedious task. So it would make sense to ease the process by introducing something that will allow us to share these bundle of YAMLs every time we would like to add an application to our cluster. This something is called Helm. |
| 6353 | +Sometimes when you would like to deploy a certain application to your cluster, you need to create multiple YAML files/components like: Secret, Service, ConfigMap, etc. This can be tedious task. So it would make sense to ease the process by introducing something that will allow us to share these bundle of YAMLs every time we would like to add an application to our cluster. This something is called Helm. |
| 6354 | +
|
| 6355 | +A common scenario is having multiple Kubernetes clusters (prod, dev, staging). Instead of individually applying different YAMLs in each cluster, it makes more sense to create one Chart and install it in every cluster. |
6352 | 6356 | </b></details>
|
6353 | 6357 |
|
6354 | 6358 | <details>
|
@@ -11724,7 +11728,7 @@ Bonus: extract the last word of each line
|
11724 | 11728 | <summary>Replace 'red' with 'green'</summary><br><b>
|
11725 | 11729 | </b></details>
|
11726 | 11730 |
|
11727 |
| -#### System Design |
| 11731 | +## System Design |
11728 | 11732 |
|
11729 | 11733 | <details>
|
11730 | 11734 | <summary>Explain what is a "Single point of failure" and give an example</summary><br><b>
|
|
0 commit comments