add lumfao.dubyatp.xyz

This commit is contained in:
2025-03-03 20:11:49 -05:00
parent 9a90eb6bff
commit 5d9c4a33a5
4 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
apiVersion: v1
kind: Secret
metadata:
name: cert-dubyatp-xyz
annotations:
replicator.v1.mittwald.de/replicate-from: cert-manager/cert-dubyatp-xyz
replicator.v1.mittwald.de/replicated-keys: tls.crt,tls.key
type: Opaque
data:
tls.crt: ""
tls.key: ""

View File

@@ -0,0 +1,20 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: lumfao-dubyatp-xyz
spec:
selector:
matchLabels:
app: lumfao-dubyatp-xyz
template:
metadata:
labels:
app: lumfao-dubyatp-xyz
spec:
containers:
- name: web
image: git.dubyatp.xyz/williamp/lumfao-dubyatp-xyz:adhocbuild-03032025
resources:
limits:
memory: "128Mi"
cpu: "500m"

View File

@@ -0,0 +1,22 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: lumfao-dubyatp-xyz-ingress
labels:
name: lumfao-dubyatp-xyz-ingress
spec:
rules:
- host: lumfao.dubyatp.xyz
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: lumfao-dubyatp-xyz-svc
port:
number: 80
tls:
- hosts:
- lumfao.dubyatp.xyz
secretName: cert-dubyatp-xyz

View File

@@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: lumfao-dubyatp-xyz-svc
spec:
selector:
app: lumfao-dubyatp-xyz
ports:
- port: 80
targetPort: 80
type: ClusterIP