
* Fix names in documentation This fixes the documentation to reflect the name change from `nginx-ingress` to `ingress-nginx`. Signed-off-by: Reinhard Nägele <unguiculus@gmail.com> * Revert accidental changelog update Signed-off-by: Reinhard Nägele <unguiculus@gmail.com>
23 lines
532 B
YAML
23 lines
532 B
YAML
# This is the backend service
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: ingress-nginx-lb
|
|
labels:
|
|
app.kubernetes.io/name: ingress-nginx
|
|
app.kubernetes.io/part-of: ingress-nginx
|
|
spec:
|
|
externalTrafficPolicy: Local
|
|
type: LoadBalancer
|
|
loadBalancerIP: 104.154.109.191
|
|
ports:
|
|
- port: 80
|
|
name: http
|
|
targetPort: 80
|
|
- port: 443
|
|
name: https
|
|
targetPort: 443
|
|
selector:
|
|
# Selects ingress-nginx-controller pods
|
|
app.kubernetes.io/name: ingress-nginx
|
|
app.kubernetes.io/part-of: ingress-nginx
|