Tyler Perkins
6d2cfa8e80
All checks were successful
continuous-integration/drone/push Build is passing
26 lines
592 B
YAML
26 lines
592 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: navidrome-ingress
|
|
namespace: navidrome-ns
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- music.clortox.com
|
|
secretName: music-clortox-com-tls
|
|
rules:
|
|
- host: music.clortox.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: navidrome-service
|
|
port:
|
|
number: 80 # Ensure this is the correct port your Navidrome service listens on
|
|
|