trying again
All checks were successful
Apply Kuberentes Configs / update-repo (push) Successful in 1s
Apply Kuberentes Configs / update-infrastructure (push) Successful in 3s
Libation / update-repo (push) Successful in 0s
Libation / sync-audiobooks (push) Successful in 4s
ZFS Backup / update-infrastructure (push) Successful in 52s
Manage Jellyfin Playlists / update-repo (push) Successful in 0s
Manage Jellyfin Playlists / run-python (push) Successful in 47s

This commit is contained in:
2026-02-15 19:09:09 -07:00
parent 72734bd734
commit 2443e4383c
2 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,79 @@
apiVersion: v1
kind: Namespace
metadata:
name: homepage
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: homepage
namespace: homepage
spec:
replicas: 1
selector:
matchLabels:
app: homepage
template:
metadata:
labels:
app: homepage
spec:
restartPolicy: Always
containers:
- name: homepage
image: ghcr.io/gethomepage/homepage:latest
imagePullPolicy: Always
ports:
- containerPort: 3000
name: http
env:
- name: HOMEPAGE_ALLOWED_HOSTS
value: "server.alexmickelson.guru:3001,home.alexmickelson.guru"
volumeMounts:
- name: host-configs
mountPath: /app/config/
volumes:
- name: host-configs
hostPath:
path: /data/homepage
type: DirectoryOrCreate
---
apiVersion: v1
kind: Service
metadata:
name: homepage
namespace: homepage
spec:
selector:
app: homepage
ports:
- name: http
protocol: TCP
port: 3000
targetPort: 3000
type: ClusterIP
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: homepage
namespace: homepage
annotations:
cert-manager.io/cluster-issuer: cloudflare-issuer
spec:
ingressClassName: nginx
tls:
- hosts:
- home.alexmickelson.guru
secretName: homepage-tls
rules:
- host: home.alexmickelson.guru
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: homepage
port:
number: 3000