Disabled ingress temporarily

This commit is contained in:
GeorgeRaven
2023-12-17 22:47:22 +00:00
parent 2b54d6a699
commit 63cfe2fc30

View File

@@ -1,27 +1,27 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
# add an annotation indicating the issuer to use.
# cert-manager.io/cluster-issuer: letsencrypt
cert-manager.io/cluster-issuer: aux-issuer
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/proxy-body-size: 32M
name: nextcloud-ingress
namespace: nextcloud
spec:
rules:
- host: nextcloud.deepcypher.me
http:
paths:
- backend:
service:
name: nextcloud-app
port:
number: 8080
pathType: Prefix
path: /
tls: # < placing a host in the TLS config will indicate a certificate should be created
- hosts:
- nextcloud.deepcypher.me
secretName: dc-nextcloud-cert # < cert-manager will store the created certificate in this secret.
#apiVersion: networking.k8s.io/v1
#kind: Ingress
#metadata:
# annotations:
# # add an annotation indicating the issuer to use.
# # cert-manager.io/cluster-issuer: letsencrypt
# cert-manager.io/cluster-issuer: aux-issuer
# kubernetes.io/ingress.class: nginx
# nginx.ingress.kubernetes.io/proxy-body-size: 32M
# name: nextcloud-ingress
# namespace: nextcloud
#spec:
# rules:
# - host: nextcloud.deepcypher.me
# http:
# paths:
# - backend:
# service:
# name: nextcloud-app
# port:
# number: 8080
# pathType: Prefix
# path: /
# tls: # < placing a host in the TLS config will indicate a certificate should be created
# - hosts:
# - nextcloud.deepcypher.me
# secretName: dc-nextcloud-cert # < cert-manager will store the created certificate in this secret.