Skip to content

Commit c443cde

Browse files
authored
Added couple AWS/Kubernetes answers (bregman-arie#204)
1 parent b4cfd42 commit c443cde

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

certificates/aws-cloud-practitioner.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ SAAS
4040
* Public
4141
* Hybrid
4242
* Private</summary><br><b>
43+
44+
- Public - Public cloud is when you leverage cloud services over the open internet on hardware owned by the cloud provider, but its usage is shared by other companies.<br>
45+
46+
- Hybrid - A hybrid cloud is a cloud computing environment that uses a mix of combining a public and private cloud environment, like an on-premises data center, and public CSPs.<br>
47+
48+
- Private - Private cloud means that the cloud infrastructure is provisioned for exclusive use by a single organization.
49+
[Read more](https://aws.amazon.com/types-of-cloud-computing/)
4350
</b></details>
4451

4552
#### AWS Global Infrastructure

exercises/aws/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ For example, port `2017` and endpoint `/health`.
12461246

12471247
<details>
12481248
<summary>Which type of AWS load balancer is used in the following drawing?<br>
1249-
<img src="images/aws/identify_load_balancer.png" width="300x;" height="400px;"/>
1249+
<img src="images/aws/identify_load_balancer.png" width="300px;" height="400px;"/>
12501250
</summary><br><b>
12511251

12521252
Application Load Balancer (routing based on different endpoints + HTTP is used).

exercises/kubernetes/README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ False. A Kubernetes cluster consists of at least 1 master and can have 0 workers
137137

138138
<details>
139139
<summary>Place the components on the right side of the image in the right place in the drawing<br>
140-
<img src="images/kubernetes/kubernetes_components.png"/>
140+
<img src="images/kubernetes/kubernetes_components.png" height="300px" width="300px"/>
141141
</summary><br><b>
142-
<img src="images/kubernetes/kubernetes_components_solution.png"/>
142+
<img src="images/kubernetes/kubernetes_components_solution.png" height="300px" width="300px"/>
143143
</b></details>
144144

145145
<details>
@@ -1015,6 +1015,7 @@ etcd
10151015
10161016
<details>
10171017
<summary>What is etcd?</summary><br><b>
1018+
etcd is an open source distributed key-value store used to hold and manage the critical information that distributed systems need to keep running.[Read more](https://www.redhat.com/en/topics/containers/what-is-etcd)
10181019
</b></details>
10191020
10201021
<details>
@@ -1248,10 +1249,12 @@ kubectl delete pods --field-selector=status.phase!='Running'
12481249
12491250
<details>
12501251
<summary>What <code>kubectl logs [pod-name]</code> command does?</summary><br><b>
1252+
Print the logs for a container in a pod.
12511253
</b></details>
12521254
12531255
<details>
12541256
<summary>What <code>kubectl describe pod [pod name] does?</code> command does?</summary><br><b>
1257+
Show details of a specific resource or group of resources.
12551258
</b></details>
12561259
12571260
<details>
@@ -1397,6 +1400,7 @@ It includes:
13971400
13981401
<details>
13991402
<summary>Explain StatefulSet</summary><br><b>
1403+
StatefulSet is the workload API object used to manage stateful applications. Manages the deployment and scaling of a set of Pods, and provides guarantees about the ordering and uniqueness of these Pods.[Learn more](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/)
14001404
</b></details>
14011405
14021406
#### Kubernetes - Secrets
@@ -1666,6 +1670,7 @@ To fix it, these lines should placed in the spec of the cron job, above or under
16661670
16671671
<details>
16681672
<summary>Explain Imperative Management vs. Declarative Management</summary><br><b>
1673+
16691674
</b></details>
16701675
16711676
<details>
@@ -1680,6 +1685,7 @@ Namespaces will allow to limit resources and also make sure there are no collisi
16801685
16811686
<details>
16821687
<summary>What Kube Proxy does?</summary><br><b>
1688+
Kube Proxy is a network proxy that runs on each node in your cluster, implementing part of the Kubernetes Service concept
16831689
</b></details>
16841690
16851691
<details>
@@ -1722,6 +1728,7 @@ Scale the number of pods automatically on observed CPU utilization.
17221728
17231729
<details>
17241730
<summary>What does being cloud-native mean?</summary><br><b>
1731+
The term cloud native refers to the concept of building and running applications to take advantage of the distributed computing offered by the cloud delivery model.
17251732
</b></details>
17261733
17271734
<details>

0 commit comments

Comments
 (0)