Skip to content
Open
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
2 changes: 1 addition & 1 deletion topics/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ What's your goal?

* I would like to prepare for CKA certification
* See [CKA](CKA.md) page
* I would like to learn Kubernetes by practicing both theoritcal and practical material
* I would like to learn Kubernetes by practicing both theoretical and practical material
* Solve [exercises](#kubernetes-exercises)
* Solve [questions](#kubernetes-questions)
* I would like to learn practical Kubernetes
Expand Down
2 changes: 1 addition & 1 deletion topics/linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ Its a bit that only allows the owner or the root user to delete or modify the fi

<details>
<summary>What is sudo? How do you set it up?</summary><br><b>
sudo is a command-line utility in Unix-like operating systems that allows users to run programs with the privileges of another user, usually the superuser (root). It stands for "superuser do.
sudo is a command-line utility in Unix-like operating systems that allows users to run programs with the privileges of another user, usually the superuser (root). It stands for "superuser do".

The sudo program is installed by default in almost all Linux distributions. If you need to install sudo in Debian/Ubuntu, use the command apt-get install sudo

Expand Down
4 changes: 2 additions & 2 deletions topics/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ To be clear, CM tools can be used to provision resources so in the end goal of h
```
resource "aws_instance" "some-instance" {
ami = "ami-201720221991yay"
instance_type = "t2.micro
instance_type = "t2.micro"
}
```

Expand All @@ -156,7 +156,7 @@ The instance itself will be provisioned with type "t2.micro" and using an image
```
resource "aws_instance" "some-instance" {
ami = "ami-201720221991yay"
instance_type = "t2.micro
instance_type = "t2.micro"
}
```

Expand Down