ports
This commit is contained in:
9
kubernetes/ingress/values.yml
Normal file
9
kubernetes/ingress/values.yml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
controller:
|
||||||
|
hostNetwork: true
|
||||||
|
dnsPolicy: ClusterFirstWithHostNet
|
||||||
|
# kind: DaemonSet
|
||||||
|
# hostPort:
|
||||||
|
# enabled: true
|
||||||
|
# ports:
|
||||||
|
# http: 80
|
||||||
|
# https: 443
|
||||||
@@ -38,3 +38,11 @@ kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/cont
|
|||||||
``
|
``
|
||||||
|
|
||||||
I'll need to create a custom service to bring in port 80 and 443 later
|
I'll need to create a custom service to bring in port 80 and 443 later
|
||||||
|
|
||||||
|
```
|
||||||
|
helm upgrade --install ingress-nginx ingress-nginx \
|
||||||
|
--repo https://kubernetes.github.io/ingress-nginx \
|
||||||
|
--namespace ingress-nginx \
|
||||||
|
--create-namespace \
|
||||||
|
-f values.yml
|
||||||
|
```
|
||||||
|
|||||||
@@ -9,4 +9,12 @@
|
|||||||
"--disable=traefik"
|
"--disable=traefik"
|
||||||
"--tls-san 100.122.128.107"
|
"--tls-san 100.122.128.107"
|
||||||
];
|
];
|
||||||
|
networking.firewall.allowedTCPPorts = [
|
||||||
|
443
|
||||||
|
80
|
||||||
|
];
|
||||||
|
networking.firewall.allowedUDPPorts = [
|
||||||
|
443
|
||||||
|
80
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user