From 5a9450c7c11169bc1eef8b0268f76e70e6202251 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sat, 21 Oct 2023 16:41:28 -0400 Subject: [PATCH] Remove uptime kuma --- base/uptime-kuma/uptime-kuma-namespace.yaml | 4 --- uptime-kuma/uptime-kuma-deployment.yaml | 28 --------------------- uptime-kuma/uptime-kuma-pvc-config.yaml | 12 --------- uptime-kuma/uptime-kuma-service.yaml | 14 ----------- 4 files changed, 58 deletions(-) delete mode 100644 base/uptime-kuma/uptime-kuma-namespace.yaml delete mode 100644 uptime-kuma/uptime-kuma-deployment.yaml delete mode 100644 uptime-kuma/uptime-kuma-pvc-config.yaml delete mode 100644 uptime-kuma/uptime-kuma-service.yaml diff --git a/base/uptime-kuma/uptime-kuma-namespace.yaml b/base/uptime-kuma/uptime-kuma-namespace.yaml deleted file mode 100644 index 72946c9..0000000 --- a/base/uptime-kuma/uptime-kuma-namespace.yaml +++ /dev/null @@ -1,4 +0,0 @@ -apiVersion: v1 -kind: Namespace -metadata: - name: uptime-kuma-ns diff --git a/uptime-kuma/uptime-kuma-deployment.yaml b/uptime-kuma/uptime-kuma-deployment.yaml deleted file mode 100644 index 73b68b1..0000000 --- a/uptime-kuma/uptime-kuma-deployment.yaml +++ /dev/null @@ -1,28 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: uptime-kuma - namespace: uptime-kuma-ns -spec: - replicas: 1 - selector: - matchLabels: - app: uptime-kuma - template: - metadata: - labels: - app: uptime-kuma - spec: - volumes: - - name: data-mount - persistentVolumClaim: - claimName: uptime-kuma-pvc - containers: - - name: uptime-kuma - image: louislam/uptime-kuma - ports: - - containerPort: 3001 - volumeMounts: - - mountPath: '/app/data' - name: data-mount - diff --git a/uptime-kuma/uptime-kuma-pvc-config.yaml b/uptime-kuma/uptime-kuma-pvc-config.yaml deleted file mode 100644 index 60ad6f5..0000000 --- a/uptime-kuma/uptime-kuma-pvc-config.yaml +++ /dev/null @@ -1,12 +0,0 @@ -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: uptime-kuma-pvc - namespace: uptime-kuma-ns -spec: - accessModes: - - ReadWriteOnce - storageClassName: longhorn - resources: - requests: - storage: 1Gi diff --git a/uptime-kuma/uptime-kuma-service.yaml b/uptime-kuma/uptime-kuma-service.yaml deleted file mode 100644 index 11b06bf..0000000 --- a/uptime-kuma/uptime-kuma-service.yaml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: uptime-kuma-service - namespace: uptime-kuma-ns -spec: - selector: - app: uptime-kuma - ports: - - protocol: TCP - port: 80 - targetPort: 3001 - type: LoadBalancer -