diff --git a/Prowlarr/README.md b/Prowlarr/README.md
index c827b07..e69de29 100644
--- a/Prowlarr/README.md
+++ b/Prowlarr/README.md
@@ -1,8 +0,0 @@
-# Prowlarr
-Prowlarr is an indexer manager/proxy built on the popular *arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports management of both Torrent Trackers and Usenet Indexers. It integrates seamlessly with Lidarr, Mylar3, Radarr, Readarr, and Sonarr offering complete management of your indexers with no per app Indexer setup required (we do it all).
-\- [source](https://github.com/Prowlarr/Prowlarr)
-
-## Using this kubernetes config
-In `ingress.yml`, set the hostname that users will use to connect to the service. This config assumes you have cert-manager installed on your cluster, so if you want to provide HTTPS another way, feel free to comment out the `spec.tls` section (the annotation shouldn't affect anything, but you can comment it out as well if you want)
-
-You can also change the user ID and group ID in `deployment.yml` under which Prowlarr runs if you need to, but it should work just fine as it is.
\ No newline at end of file
diff --git a/Prowlarr/deployment.yml b/Prowlarr/deployment.yml
deleted file mode 100644
index eff8b00..0000000
--- a/Prowlarr/deployment.yml
+++ /dev/null
@@ -1,48 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: prowlarr
-spec:
- replicas: 1
- selector:
- matchLabels:
- app: prowlarr
- template:
- metadata:
- labels:
- app: prowlarr
- spec:
- containers:
- - name: prowlarr
- image: linuxserver/prowlarr:latest
- ports:
- - containerPort: 9696
- env:
- - name: PUID
- value: "1000"
- - name: PGID
- value: "1000"
- - name: TZ
- value: "UTC"
- resources:
- limits:
- memory: "512Mi"
- cpu: "500m"
- volumeMounts:
- - name: config
- mountPath: /config
- volumes:
- - name: config
- persistentVolumeClaim:
- claimName: prowlarr-config-pvc
----
-apiVersion: v1
-kind: PersistentVolumeClaim
-metadata:
- name: prowlarr-config-pvc
-spec:
- accessModes:
- - ReadWriteOnce
- resources:
- requests:
- storage: 512Mi
diff --git a/Prowlarr/ingress.yml b/Prowlarr/ingress.yml
deleted file mode 100644
index 9a78b5b..0000000
--- a/Prowlarr/ingress.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-apiVersion: networking.k8s.io/v1
-kind: Ingress
-metadata:
- name: prowlarr
- annotations:
- cert-manager.io/cluster-issuer: "letsencrypt-production"
-spec:
- tls:
- - hosts:
- -
- secretName: prowlarr-tls
- rules:
- - host:
- http:
- paths:
- - path: /
- pathType: Prefix
- backend:
- service:
- name: prowlarr
- port:
- number: 80
diff --git a/Prowlarr/service.yml b/Prowlarr/service.yml
deleted file mode 100644
index f8b487e..0000000
--- a/Prowlarr/service.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-apiVersion: v1
-kind: Service
-metadata:
- name: prowlarr
-spec:
- selector:
- app: prowlarr
- ports:
- - name: http
- port: 80
- targetPort: 9696
diff --git a/README.md b/README.md
index 7268b84..5706a99 100644
--- a/README.md
+++ b/README.md
@@ -1,30 +1 @@
-This is a collection of kubernetes configurations for various services that I have modified from my own personal kubernetes repo to be used by anyone. Each service comes with a readme explaining how to configure each service. The documentation is written assuming you have some knowledge of how to apply kubernetes configs. It also works on the assumption that you have cert-manager installed on your cluster for automatic tls certificate generation
-
-## Progress
-- [x] Authentik
-- [ ] Baikal
-- [ ] Cert-Manager
-- [ ] Conduit
-- [ ] Continuwuity
-- [ ] ErgoChat
-- [x] FlareSolverr
-- [ ] Gitea
-- [x] Headscale
-- [ ] Immich
-- [ ] Inspircd
-- [x] Jellyfin
-- [x] Kavita
-- [ ] Lidarr
-- [x] Mealie
-- [ ] Minecraft Servers
-- [ ] MinIO
-- [ ] Navidrome
-- [ ] Outline
-- [ ] PrivoxyVPN
-- [x] Prowlarr
-- [ ] QBitTorrent
-- [x] Radarr
-- [x] Sonarr
-- [ ] Soulseek
-- [ ] Syncthing
-- [ ] Tuwunnel
\ No newline at end of file
+This is a collection of kubernetes configurations for various services that I have modified from my own personal kubernetes repo to be used by anyone. Each service comes with a readme explaining how to configure each service. The documentation is written assuming you have some knowledge of how to apply kubernetes configs. It also works on the assumption that you have cert-manager installed on your cluster for automatic tls certificate generation
\ No newline at end of file