From 820b56fd6b66808026b46ea6225138a7b1d8fe9b Mon Sep 17 00:00:00 2001 From: ubuntu Date: Wed, 22 Oct 2025 20:43:54 +0000 Subject: [PATCH] test --- deployment.yaml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 deployment.yaml diff --git a/deployment.yaml b/deployment.yaml new file mode 100644 index 0000000..5d3c8d1 --- /dev/null +++ b/deployment.yaml @@ -0,0 +1,51 @@ +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: allardkrings/riscv64-olproperties:1.0 + imagePullPolicy: Always + ports: + - containerPort: 9080 + imagePullSecrets: + - name: registry-credentials +--- +apiVersion: v1 +kind: Service +metadata: + name: olproperties +spec: + type: ClusterIP + ports: + - name: port-0 + port: 9080 + selector: + app: olproperties +--- +apiVersion: traefik.containo.us/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