You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+152Lines changed: 152 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2370,6 +2370,10 @@ tail -f <file_name>
2370
2370
<summary>What kind of information one can find in /proc?</summary><br><b>
2371
2371
</b></details>
2372
2372
2373
+
<details>
2374
+
<summary>Can you create files in /proc?</summary><br><b>
2375
+
</b></details>
2376
+
2373
2377
<details>
2374
2378
<summary>What is the difference between CPU load and utilization?</summary><br><b>
2375
2379
</b></details>
@@ -2504,6 +2508,10 @@ Another way to ask this: what happens from the moment you turned on the server u
2504
2508
<summary>What is Secure Boot?</summary><br><b>
2505
2509
</b></details>
2506
2510
2511
+
<details>
2512
+
<summary>What can you find in /boot?</summary><br><b>
2513
+
</b></details>
2514
+
2507
2515
##### Linux Disk & Filesystem
2508
2516
2509
2517
<details>
@@ -3450,6 +3458,12 @@ MemAvailable - The amount of available memory for new workloads (without pushing
3450
3458
<summary>Wildcards are implemented on user or kernel space?</summary><br><b>
3451
3459
</b></details>
3452
3460
3461
+
<details>
3462
+
<summary>If I plug a new device into a Linux machine, where on the system, a new device entry/file will be created?</summary><br><b>
3463
+
3464
+
/dev
3465
+
</b></details>
3466
+
3453
3467
<details>
3454
3468
<summary>Why there are different sections in man? What is the difference between the sections?</summary><br><b>
3455
3469
</b></details>
@@ -4329,6 +4343,64 @@ False. A Kubernetes cluster consists of at least 1 master and 0 or more workers.
4329
4343
<summary>What is kubectl?</summary><br><b>
4330
4344
</b></details>
4331
4345
4346
+
<details>
4347
+
<summary>What are namespaces? Why would someone use namespaces?</summary><br><b>
4348
+
</b></details>
4349
+
4350
+
<details>
4351
+
<summary>True or False? When a namespace is deleted all resources in that namespace are not deleted but moved to another default namespace</summary><br><b>
4352
+
4353
+
False. When a namespace is deleted, the resources in that namespace are deleted as well.
4354
+
</b></details>
4355
+
4356
+
<details>
4357
+
<summary>What special namespaces are there?</summary><br><b>
4358
+
4359
+
* Default
4360
+
* Kube-system
4361
+
* Kube-public
4362
+
</b></details>
4363
+
4364
+
<details>
4365
+
<summary>What "Resources Quotas" are used for and how?</summary><br><b>
4366
+
</b></details>
4367
+
4368
+
<details>
4369
+
<summary>Explain ConfigMaps</summary><br><b>
4370
+
4371
+
Separate configuration from pods.
4372
+
</b></details>
4373
+
4374
+
<details>
4375
+
<summary>How to use ConfigMaps?</summary><br><b>
4376
+
4377
+
1. Create it (from key&value, a file or an env file)
4378
+
2. Attach it. Mount a configmap as a volume
4379
+
</b></details>
4380
+
4381
+
<details>
4382
+
<summary>Explain "Horizontal Pod Autoscaler"</summary><br><b>
4383
+
4384
+
Scale the number of pods automatically on observed CPU utilization.
4385
+
</b></details>
4386
+
4387
+
<details>
4388
+
<summary>Explain the "Service" concept</summary><br><b>
4389
+
4390
+
"An abstract way to expose an application running on a set of Pods as a network service." - more [here](https://kubernetes.io/docs/concepts/services-networking/service)
4391
+
</b></details>
4392
+
4393
+
<details>
4394
+
<summary>What services types are there?</summary><br><b>
4395
+
4396
+
* ClusterIP
4397
+
* NodePort
4398
+
* LoadBalancer
4399
+
* ExternalName
4400
+
4401
+
More on this topic [here](https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types)
4402
+
</b></details>
4403
+
4332
4404
#### Basic Commands
4333
4405
4334
4406
<details>
@@ -4349,6 +4421,24 @@ False. A Kubernetes cluster consists of at least 1 master and 0 or more workers.
4349
4421
`kubectl get namespaces`
4350
4422
</b></details>
4351
4423
4424
+
<details>
4425
+
<summary>How to view the current namespace?</code></summary><br><b>
4426
+
4427
+
kubectl config view | grep namespace
4428
+
</b></details>
4429
+
4430
+
<details>
4431
+
<summary>How to switch to another namespace?</code></summary><br><b>
0 commit comments