add williamtpeebles.com

This commit is contained in:
2025-10-31 13:54:44 -04:00
parent 2764576db2
commit 0bd153d89a
4 changed files with 79 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,24 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: williamtpeebles-com
spec:
replicas: 3
selector:
matchLabels:
app: williamtpeebles-com
template:
metadata:
labels:
app: williamtpeebles-com
spec:
containers:
- name: web
image: git.dubyatp.xyz/williamp/williamtpeebles-com:b184941
resources:
limits:
memory: "1Gi"
cpu: "500m"
requests:
memory: "256Mi"
cpu: "500m"

View File

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

View File

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