Remove longhorn ingress

This commit is contained in:
Ruben Hensen
2024-10-03 14:49:10 +02:00
parent 26324c1825
commit 3e932a61f0
+27 -27
View File
@@ -1,27 +1,27 @@
apiVersion: networking.k8s.io/v1 # apiVersion: networking.k8s.io/v1
kind: Ingress # kind: Ingress
metadata: # metadata:
name: longhorn-ingress # name: longhorn-ingress
namespace: longhorn-system # namespace: longhorn-system
annotations: # annotations:
# type of authentication # # type of authentication
# nginx.ingress.kubernetes.io/auth-type: basic # # nginx.ingress.kubernetes.io/auth-type: basic
# prevent the controller from redirecting (308) to HTTPS # # prevent the controller from redirecting (308) to HTTPS
nginx.ingress.kubernetes.io/ssl-redirect: 'false' # nginx.ingress.kubernetes.io/ssl-redirect: 'false'
# name of the secret that contains the user/password definitions # # name of the secret that contains the user/password definitions
# nginx.ingress.kubernetes.io/auth-secret: basic-auth # # nginx.ingress.kubernetes.io/auth-secret: basic-auth
# message to display with an appropriate context why the authentication is required # # message to display with an appropriate context why the authentication is required
# nginx.ingress.kubernetes.io/auth-realm: 'Authentication Required ' # # nginx.ingress.kubernetes.io/auth-realm: 'Authentication Required '
# custom max body size for file uploading like backing image uploading # # custom max body size for file uploading like backing image uploading
nginx.ingress.kubernetes.io/proxy-body-size: 10000m # nginx.ingress.kubernetes.io/proxy-body-size: 10000m
spec: # spec:
rules: # rules:
- http: # - http:
paths: # paths:
- pathType: Prefix # - pathType: Prefix
path: "/" # path: "/"
backend: # backend:
service: # service:
name: longhorn-frontend # name: longhorn-frontend
port: # port:
number: 80 # number: 80