olproperties/deployment.yaml
2025-10-27 13:41:01 +00:00

53 lines
961 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: olproperties
labels:
app: olproperties
spec:
replicas: 1
selector:
matchLabels:
app: olproperties
template:
metadata:
labels:
app: olproperties
spec:
containers:
- name: olproperties
image: nexus-riscv.allarddcs.nl/registry/riscv64-olproperties:1.0
imagePullPolicy: Always
ports:
- containerPort: 9080
imagePullSecrets:
- name: nexus-credentials-
---
apiVersion: v1
kind: Service
metadata:
name: olproperties
spec:
type: ClusterIP
ports:
- name: port-0
port: 9080
selector:
app: olproperties
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: olproperties-tls
spec:
entryPoints:
- websecure
routes:
- match: Host(`olproperties-riscv.allarddcs.nl`)
kind: Rule
services:
- name: olproperties
port: 9080
tls:
certResolver: letsencrypt