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 -