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

Updates to Chapter 2 README.md - Added details about the actions in deploy.yaml Installing NGINX Ingress Controller #52

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions chapter-2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ We need the NGINX Ingress Controller to route traffic from our laptop to the ser
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/release-1.8/deploy/static/provider/kind/deploy.yaml
```

> [!Note]
> Review deploy.yaml to gain a better understanding of actions being carried to support Installing the NGINX Ingress Controller. At a high level, the list of actions include: Creating a Namespace, Setting Up Service Accounts, Defining Roles and ClusterRoles, Creating RoleBindings and ClusterRoleBindings, Configuring a ConfigMap, Exposing and Deploying Ingress Controller, Creating Jobs for Webhook Configuration, Setting up IngressClass, and Configuring a ValidatingWebHookConfigration.


Check that the pods inside the `ingress-nginx` are started correctly before proceeding:
```shell
> kubectl get pods -n ingress-nginx
Expand Down