Skip to content

Commit

Permalink
feat(README): Add Nginx Ingress for AKS with random public IP
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Jun 3, 2024
1 parent 0d42645 commit 9c8aee3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1297,6 +1297,24 @@ helm upgrade --install \
--wait
```

Or with random public IP

```
helm upgrade --install \
ingress-nginx ingress-nginx \
--repo https://kubernetes.github.io/ingress-nginx \
--create-namespace \
--namespace ingress-nginx \
--set controller.service.type=LoadBalancer \
--set controller.ingressClassResource.default=true \
--set controller.kind=DaemonSet \
--set controller.hostPort.enabled=true \
--set controller.metrics.enabled=true \
--set controller.config.use-proxy-protocol=false \
--set controller.service.annotations."service\.beta\.kubernetes\.io/azure-load-balancer-health-probe-request-path"=/healthz \
--wait
```

See [ArtifactHub](https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx?modal=values) or [values.yml](https://github.com/kubernetes/ingress-nginx/blob/main/charts/ingress-nginx/values.yaml) for more options.

### Create Ingress
Expand Down

0 comments on commit 9c8aee3

Please sign in to comment.