From bb308a3d66f365dce70fa2f3bd1df97ccc294b28 Mon Sep 17 00:00:00 2001 From: Ruben Hensen Date: Fri, 10 Apr 2026 21:53:10 +0200 Subject: [PATCH] rm phocaslustrum --- phocas-lustrum/deployment.yaml | 32 -------------------------------- phocas-lustrum/ingress.yaml | 24 ------------------------ phocas-lustrum/service.yaml | 13 ------------- 3 files changed, 69 deletions(-) delete mode 100644 phocas-lustrum/deployment.yaml delete mode 100644 phocas-lustrum/ingress.yaml delete mode 100644 phocas-lustrum/service.yaml diff --git a/phocas-lustrum/deployment.yaml b/phocas-lustrum/deployment.yaml deleted file mode 100644 index b017103..0000000 --- a/phocas-lustrum/deployment.yaml +++ /dev/null @@ -1,32 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: - app: phocas-lustrum - name: phocas-lustrum -spec: - replicas: 1 - selector: - matchLabels: - app: phocas-lustrum - strategy: - type: Recreate - template: - metadata: - labels: - app: phocas-lustrum - spec: - containers: - - image: ghcr.io/rubenhensen/phocas-lustrum-demo:latest - name: phocas-lustrum - ports: - - containerPort: 3000 - protocol: TCP - resources: - requests: - memory: "64Mi" - cpu: "50m" - limits: - memory: "256Mi" - cpu: "250m" - restartPolicy: Always diff --git a/phocas-lustrum/ingress.yaml b/phocas-lustrum/ingress.yaml deleted file mode 100644 index d399c0d..0000000 --- a/phocas-lustrum/ingress.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: phocas-lustrum-ingress - annotations: - cert-manager.io/cluster-issuer: prod-cluster-issuer - nginx.ingress.kubernetes.io/backend-protocol: "HTTP" -spec: - ingressClassName: nginx - rules: - - host: phocaslustrum.rubenhensen.nl - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: phocas-lustrum - port: - number: 80 - tls: - - secretName: letsencrypt-prod - hosts: - - phocaslustrum.rubenhensen.nl diff --git a/phocas-lustrum/service.yaml b/phocas-lustrum/service.yaml deleted file mode 100644 index a3fec8e..0000000 --- a/phocas-lustrum/service.yaml +++ /dev/null @@ -1,13 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - labels: - app: phocas-lustrum - name: phocas-lustrum -spec: - ports: - - name: "http" - port: 80 - targetPort: 3000 - selector: - app: phocas-lustrum