Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Ingress installation

Prerequisites

First we added a new node to the cluster, which will take care of routing incoming requests to the appropriate services. So we created a new VM (Launch and manage instances) with a low-medium flavor, as it should only act as an ingress, and joined it to cluster (Building the cluster). We then assigned to the node, through a label, the "role" of ingress with the command

Code Block
languagebash
titleInsert label
# Enter the node name and label. The optional "--overwrite" flag is used in case the value is already present
$ kubectl label node <node_name> kubernetes.io/role=<label_value> [--overwrite]

...