port conflict

This commit is contained in:
2025-03-06 19:42:08 -07:00
parent eb5c89576e
commit 8a764156f7
3 changed files with 35 additions and 2 deletions

View File

@@ -143,7 +143,7 @@ services:
- ./prometheus.yml:/opt/bitnami/prometheus/conf/prometheus.yml
- /data/prometheus:/opt/bitnami/prometheus/data
ports:
- 9090:9090
- 9091:9090
# command:
# - '--config.file=/etc/prometheus/prometheus.yml'
# - '--storage.tsdb.path=/prometheus'

View File

@@ -0,0 +1,33 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: musicassistant-ingress
namespace: projects
annotations:
cert-manager.io/cluster-issuer: cloudflare-issuer
spec:
ingressClassName: nginx
tls:
- hosts:
- sound.alexmickelson.guru
secretName: sound-tls-cert
rules:
- host: sound.alexmickelson.guru
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: musicassistant-service
port:
number: 8095
---
apiVersion: v1
kind: Service
metadata:
name: musicassistant-service
namespace: projects
spec:
type: ExternalName
externalName: 100.122.128.107

View File

@@ -21,7 +21,7 @@ spec:
service:
name: prometheus-service
port:
number: 9090
number: 9091
---
apiVersion: v1
kind: Service