You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 09-Ingress-Basic/README.md
+14-15
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,7 @@
1
1
# Ingress - Basics
2
2
3
3
## Step-01: Introduction
4
-
5
4
### Ingress Basic Architecture
6
-
7
5
[](https://www.udemy.com/course/aws-eks-kubernetes-masterclass-devops-microservices/?referralCode=257C9AD5B5AF8D12D1E1)
8
6
9
7
### What are we going to learn?
@@ -17,7 +15,7 @@
17
15
- Clean-Up or delete application after testing
18
16
19
17
## Step-02: Create Static Public IP
20
-
```
18
+
```t
21
19
# Get the resource group name of the AKS cluster
22
20
az aks show --resource-group aks-rg1 --name aksdemo1 --query nodeResourceGroup -o tsv
23
21
@@ -28,13 +26,13 @@ az network public-ip create --resource-group <REPLACE-OUTPUT-RG-FROM-PREVIOUS-CO
28
26
az network public-ip create --resource-group MC_aks-rg1_aksdemo1_centralus --name myAKSPublicIPForIngress --sku Standard --allocation-method static --query publicIp.ipAddress -o tsv
29
27
```
30
28
- Make a note of Static IP which we will use in next step when installing Ingress Controller
With nginx-ingress-controller version 0.25+, the nginx ingress controller pod exposes an endpoint that will integrate with the validatingwebhookconfiguration Kubernetes feature to prevent bad ingress from being added to the cluster. This feature is enabled by default since 0.31.0.
0 commit comments