Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from bregman-arie:master #97

Merged
merged 4 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1615,6 +1615,15 @@ When you use a function (`YEAR(purchased_at)`) it has to scan the whole database

<details>
<summary>What components/projects of OpenStack are you familiar with?</summary><br><b>
I’m most familiar with several core OpenStack components:

- Nova for compute resource provisioning, including VM lifecycle management.
- Neutron for networking, focusing on creating and managing networks, subnets, and routers.
- Cinder for block storage, used to attach and manage storage volumes.
- Keystone for identity services, handling authentication and authorization.

I’ve implemented these in past projects, configuring them for scalability and security to support multi-tenant environments.

</b></details>

<details>
Expand Down
4 changes: 2 additions & 2 deletions topics/chaos_engineering/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The process then repeats itself either with same scenario or a new one.
<details>
<summary>Cite a few tools used to operate Chaos exercises</summary><br><b>

- AAWS Fault Injection Simulator: inject failures in AWS resources
- AWS Fault Injection Simulator: inject failures in AWS resources
- Azure Chaos Studio: inject failures in Azure resources
- Chaos Monkey: one of the most famous tools to orchestrate Chaos on diverse Cloud providers
- Litmus - A Framework for Kubernetes
Expand All @@ -42,4 +42,4 @@ The process then repeats itself either with same scenario or a new one.

See an extensive list [here](https://github.com/dastergon/awesome-chaos-engineering)

</b></details>
</b></details>
4 changes: 1 addition & 3 deletions topics/kubernetes/CKA.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Note: create an alias (`alias k=kubectl`) and get used to `k get po`
<details>
<summary>Assuming that you have a Pod called "nginx-test", how to remove it?</summary><br><b>

`k delete nginx-test`
`k delete po nginx-test`
</b></details>

<details>
Expand Down Expand Up @@ -159,8 +159,6 @@ First change to the directory tracked by kubelet for creating static pod: `cd /e

Now create the definition/manifest in that directory

`k run some-pod --image=python --command sleep 2017 --restart=Never --dry-run=client -o yaml > status-pod.yaml`
=======
`k run some-pod --image=python --command sleep 2017 --restart=Never --dry-run=client -o yaml > static-pod.yaml`

</b></details>
Expand Down
2 changes: 2 additions & 0 deletions topics/linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,8 @@ The kernel is part of the operating system and is responsible for tasks like:

<details>
<summary>What is a Linux kernel module and how do you load a new module?</summary><br><b>

A Linux kernel module is a piece of code that can be dynamically loaded into the kernel to extend its functionality. These modules are typically used to add support for hardware devices, filesystems, or system calls. The kernel itself is monolithic, but with modules, its capabilities can be extended without having to reboot the system or recompile the entire kernel.
</b></details>

<details>
Expand Down
Loading