Skip to content

Commit

Permalink
Update README.md (#10248)
Browse files Browse the repository at this point in the history
* Update README.md

Added the missing answer of the question

* Update README.md

updated code in the kubernetes deployment.
  • Loading branch information
raj-raut8502 committed Feb 2, 2024
1 parent a3a5fb2 commit b88151d
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions topics/kubernetes/README.md
Expand Up @@ -314,6 +314,7 @@ Outputs the status of each of the control plane components.
<details>
<summary>What happens to running pods if if you stop Kubelet on the worker nodes?</summary><br><b>

When you stop the kubelet service on a worker node, it will no longer be able to communicate with the Kubernetes API server. As a result, the node will be marked as NotReady and the pods running on that node will be marked as Unknown. The Kubernetes control plane will then attempt to reschedule the pods to other available nodes in the cluster.
</b></details>

#### Nodes Commands
Expand Down Expand Up @@ -736,21 +737,29 @@ A Deployment is a declarative statement for the desired state for Pods and Repli
<details>
<summary>How to create a deployment with the image "nginx:alpine"?</code></summary><br><b>

`kubectl create deployment my_first_deployment --image=nginx:alpine`
`kubectl create deployment my-first-deployment --image=nginx:alpine`

OR

```
cat << EOF | kubectl create -f -
apiVersion: v1
kind: Pod
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
spec:
containers:
- name: nginx
image: nginx:alpine
EOF
replicas: 1
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:alpine
```
</b></details>

Expand Down

0 comments on commit b88151d

Please sign in to comment.