Skip to content

Commit

Permalink
Update prerequisites.md
Browse files Browse the repository at this point in the history
Minor changes
  • Loading branch information
JohannesARENA2036 authored Feb 5, 2024
1 parent 99b607f commit e143166
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions docs/tutorials/e2e/prerequisites/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ The above list is currently a candidate for changes, especially as long as the u
You will need https (port 443) as open port for getting access to the above repositories. If you do not have direct access from your system, you most likely work in an environment which is using proxy forwarding for https. An easy way to configure your system to use the proxy server is by setting the envionment variabale "https_proxy". For example with the command below (bash), if the port 8080 is used for the forwarding:

```bash
export https_proxy=http://arena2036-proxy.rus.uni-stuttgart.de:8080
export https_proxy=http://[proxy-web-or-IP-address]:8080
```

The complete format is:
Expand Down Expand Up @@ -151,13 +151,19 @@ Within this section we briefly describe how to install the required tools on an

```bash
sudo apt update && sudo apt upgrade
```

```bash
sudo apt install docker.io
```

#### Install kubernetes

```bash
sudo apt update && sudo apt upgrade
```

```bash
sudo apt install kubernetes
```

Expand All @@ -179,6 +185,9 @@ It might be the case, that not all of these steps are needed on your machine.

```bash
sudo apt update && sudo apt upgrade
```

```bash
sudo apt install golang-go
```

Expand All @@ -192,7 +201,7 @@ sudo go install sigs.k8s.io/[email protected]

```bash
go version
``````
```

:::note

Expand All @@ -208,8 +217,10 @@ Prepare the installation of Terraform including helm:

```bash
sudo apt-get update && sudo apt-get install -y gnupg software-properties-common
```

sudo wget -o - https://apt.releases.hashicorp.com/gpg | | sudo gpg --dearmor -o | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
```bash
sudo wget -O- - https://apt.releases.hashicorp.com/gpg | | sudo gpg --dearmor -o | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
```

Verify the generated key is working:
Expand All @@ -218,7 +229,9 @@ Verify the generated key is working:
sudo gpg --no-default-keyring \
--keyring /usr/share/keyrings/hashicorp-archive-keyring.gpg \
--fingerprint
```

```bash
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] \
https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
```
Expand All @@ -227,6 +240,9 @@ Now install Terraform, which automatically also will install helm.

```bash
sudo apt update && sudo apt upgrade
```

```bash
sudo apt-get install terraform
```

Expand Down

0 comments on commit e143166

Please sign in to comment.