nextcloud public ip

This commit is contained in:
2025-03-06 19:19:10 -07:00
parent 93c219db88
commit 072fc4e57e
4 changed files with 74 additions and 0 deletions

View File

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

View File

@@ -3,8 +3,14 @@ kind: Ingress
metadata:
name: jellyfin-proxy-ingress
namespace: projects
annotations:
cert-manager.io/cluster-issuer: cloudflare-issuer
spec:
ingressClassName: nginx
tls:
- hosts:
- jellyfin.alexmickelson.guru
secretName: ha-tls-cert
rules:
- host: jellyfin.alexmickelson.guru
http:

View File

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