add dubyatp.xyz
This commit is contained in:
11
dubyatp-xyz/cert-dubyatp-xyz.yaml
Normal file
11
dubyatp-xyz/cert-dubyatp-xyz.yaml
Normal 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: ""
|
||||
20
dubyatp-xyz/deployment.yaml
Normal file
20
dubyatp-xyz/deployment.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: dubyatp-xyz
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: dubyatp-xyz
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: dubyatp-xyz
|
||||
spec:
|
||||
containers:
|
||||
- name: web
|
||||
image: git.dubyatp.xyz/williamp/dubyatp-xyz:adhocbuild-03032025
|
||||
resources:
|
||||
limits:
|
||||
memory: "128Mi"
|
||||
cpu: "500m"
|
||||
22
dubyatp-xyz/ingress.yaml
Normal file
22
dubyatp-xyz/ingress.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: dubyatp-xyz-ingress
|
||||
labels:
|
||||
name: dubyatp-xyz-ingress
|
||||
spec:
|
||||
rules:
|
||||
- host: dubyatp.xyz
|
||||
http:
|
||||
paths:
|
||||
- pathType: Prefix
|
||||
path: "/"
|
||||
backend:
|
||||
service:
|
||||
name: dubyatp-xyz-svc
|
||||
port:
|
||||
number: 80
|
||||
tls:
|
||||
- hosts:
|
||||
- dubyatp.xyz
|
||||
secretName: cert-dubyatp-xyz
|
||||
11
dubyatp-xyz/service.yaml
Normal file
11
dubyatp-xyz/service.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: dubyatp-xyz-svc
|
||||
spec:
|
||||
selector:
|
||||
app: dubyatp-xyz
|
||||
ports:
|
||||
- port: 80
|
||||
targetPort: 80
|
||||
type: ClusterIP
|
||||
Reference in New Issue
Block a user