Files
landing/manifests/deployment.yaml
T
2026-07-12 00:24:57 +00:00

58 lines
1.1 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: landing
namespace: landing
spec:
replicas: 1
selector:
matchLabels:
app: landing
template:
metadata:
labels:
app: landing
spec:
containers:
- name: landing
image: gitea.niq-dev.com/gitea_admin/landing:3e63d96587fddb95c88112a01ea62e218d667c56
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: landing
namespace: landing
spec:
selector:
app: landing
ports:
- port: 80
targetPort: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: landing
namespace: landing
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
spec:
ingressClassName: traefik
tls:
- hosts:
- www.niq-dev.com
secretName: landing-tls
rules:
- host: www.niq-dev.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: landing
port:
number: 80