Added couple AWS/Kubernetes answers (#204)

This commit is contained in:
Akshay Khandelwal 2022-01-24 22:57:07 +05:30 committed by GitHub
parent b4cfd42a81
commit c443cde51b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 3 deletions

View File

@ -40,6 +40,13 @@ SAAS
* Public * Public
* Hybrid * Hybrid
* Private</summary><br><b> * 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> </b></details>
#### AWS Global Infrastructure #### AWS Global Infrastructure

View File

@ -1246,7 +1246,7 @@ For example, port `2017` and endpoint `/health`.
<details> <details>
<summary>Which type of AWS load balancer is used in the following drawing?<br> <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> </summary><br><b>
Application Load Balancer (routing based on different endpoints + HTTP is used). Application Load Balancer (routing based on different endpoints + HTTP is used).

View File

@ -137,9 +137,9 @@ False. A Kubernetes cluster consists of at least 1 master and can have 0 workers
<details> <details>
<summary>Place the components on the right side of the image in the right place in the drawing<br> <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> </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> </b></details>
<details> <details>
@ -1015,6 +1015,7 @@ etcd
<details> <details>
<summary>What is etcd?</summary><br><b> <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> </b></details>
<details> <details>
@ -1248,10 +1249,12 @@ kubectl delete pods --field-selector=status.phase!='Running'
<details> <details>
<summary>What <code>kubectl logs [pod-name]</code> command does?</summary><br><b> <summary>What <code>kubectl logs [pod-name]</code> command does?</summary><br><b>
Print the logs for a container in a pod.
</b></details> </b></details>
<details> <details>
<summary>What <code>kubectl describe pod [pod name] does?</code> command does?</summary><br><b> <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> </b></details>
<details> <details>
@ -1397,6 +1400,7 @@ It includes:
<details> <details>
<summary>Explain StatefulSet</summary><br><b> <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> </b></details>
#### Kubernetes - Secrets #### Kubernetes - Secrets
@ -1666,6 +1670,7 @@ To fix it, these lines should placed in the spec of the cron job, above or under
<details> <details>
<summary>Explain Imperative Management vs. Declarative Management</summary><br><b> <summary>Explain Imperative Management vs. Declarative Management</summary><br><b>
</b></details> </b></details>
<details> <details>
@ -1680,6 +1685,7 @@ Namespaces will allow to limit resources and also make sure there are no collisi
<details> <details>
<summary>What Kube Proxy does?</summary><br><b> <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> </b></details>
<details> <details>
@ -1722,6 +1728,7 @@ Scale the number of pods automatically on observed CPU utilization.
<details> <details>
<summary>What does being cloud-native mean?</summary><br><b> <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> </b></details>
<details> <details>