Add a couple of questions

This commit is contained in:
abregman
2020-06-15 09:41:32 +03:00
parent 90a6170984
commit 38aaea849a
4 changed files with 144 additions and 54 deletions

View File

@@ -13,3 +13,42 @@
`kubectl get pods --all-namespaces`
</b></details>
<details>
<summary>How to list all namespaces?</code></summary><br><b>
`kubectl get namespaces`
</b></details>
<details>
<summary>How to create a deployment?</code></summary><br><b>
```
cat << EOF | kubectl create -f -
> apiVersion: v1
> kind: Pod
> metadata:
> name: nginx
> spec:
> containers:
> - name: nginx
> image: nginx
> EOF
```
</b></details>
<details>
<summary>How to print information on a specific pod?</code></summary><br><b>
`kubectl describe pod pod_name`
</b></details>
<details>
<summary>How to delete a pod?</code></summary><br><b>
`kubectl delete pod pod_name`
</b></details>
<details>
<summary>How to check the status of all the components?</code></summary><br><b>
</b></details>

View File

@@ -316,6 +316,12 @@ More on storage classes [here](https://aws.amazon.com/s3/storage-classes)
Glacier Deep Archive
</b></details>
<details>
<summary>What Glacier retrieval options are available for the user?</summary><br><b>
Expedited, Standard and Bulk
</b></details>
<details>
<summary>True or False? Each AWS account can store up to 500 PetaByte of data. Any additional storage will cost double</summary><br><b>