Skip to content

Commit

Permalink
Added couple AWS/Kubernetes answers (bregman-arie#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaygitops authored Jan 24, 2022
1 parent b4cfd42 commit c443cde
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
7 changes: 7 additions & 0 deletions certificates/aws-cloud-practitioner.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ SAAS
* Public
* Hybrid
* Private</summary><br><b>

- 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>

- 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>

- Private - Private cloud means that the cloud infrastructure is provisioned for exclusive use by a single organization.
[Read more](https://aws.amazon.com/types-of-cloud-computing/)
</b></details>

#### AWS Global Infrastructure
Expand Down
2 changes: 1 addition & 1 deletion exercises/aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1246,7 +1246,7 @@ For example, port `2017` and endpoint `/health`.

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

Application Load Balancer (routing based on different endpoints + HTTP is used).
Expand Down
11 changes: 9 additions & 2 deletions exercises/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ False. A Kubernetes cluster consists of at least 1 master and can have 0 workers

<details>
<summary>Place the components on the right side of the image in the right place in the drawing<br>
<img src="images/kubernetes/kubernetes_components.png"/>
<img src="images/kubernetes/kubernetes_components.png" height="300px" width="300px"/>
</summary><br><b>
<img src="images/kubernetes/kubernetes_components_solution.png"/>
<img src="images/kubernetes/kubernetes_components_solution.png" height="300px" width="300px"/>
</b></details>

<details>
Expand Down Expand Up @@ -1015,6 +1015,7 @@ etcd
<details>
<summary>What is etcd?</summary><br><b>
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)
</b></details>
<details>
Expand Down Expand Up @@ -1248,10 +1249,12 @@ kubectl delete pods --field-selector=status.phase!='Running'
<details>
<summary>What <code>kubectl logs [pod-name]</code> command does?</summary><br><b>
Print the logs for a container in a pod.
</b></details>
<details>
<summary>What <code>kubectl describe pod [pod name] does?</code> command does?</summary><br><b>
Show details of a specific resource or group of resources.
</b></details>
<details>
Expand Down Expand Up @@ -1397,6 +1400,7 @@ It includes:
<details>
<summary>Explain StatefulSet</summary><br><b>
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/)
</b></details>
#### Kubernetes - Secrets
Expand Down Expand Up @@ -1666,6 +1670,7 @@ To fix it, these lines should placed in the spec of the cron job, above or under
<details>
<summary>Explain Imperative Management vs. Declarative Management</summary><br><b>
</b></details>
<details>
Expand All @@ -1680,6 +1685,7 @@ Namespaces will allow to limit resources and also make sure there are no collisi
<details>
<summary>What Kube Proxy does?</summary><br><b>
Kube Proxy is a network proxy that runs on each node in your cluster, implementing part of the Kubernetes Service concept
</b></details>
<details>
Expand Down Expand Up @@ -1722,6 +1728,7 @@ Scale the number of pods automatically on observed CPU utilization.
<details>
<summary>What does being cloud-native mean?</summary><br><b>
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.
</b></details>
<details>
Expand Down

0 comments on commit c443cde

Please sign in to comment.