gitops-sample/ingress.yaml
suyiiyii cce50ca28e
Revert "fix: update cert-manager issuer names in ingress and issuer YAML files"
This reverts commit b85c4c0c8e395f20989c4f0395299a5bf41a71cb.
2024-11-16 00:31:10 +08:00

23 lines
482 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: nginix-ingress
annotations:
cert-manager.io/issuer: letsencrypt-issuer
spec:
tls:
- hosts:
- nginix.kl.suyiiyii.top
secretName: nginix-tls
rules:
- host: nginix.kl.suyiiyii.top
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: nginix-service
port:
number: 80