diff --git a/apps/arr/ingress.yaml b/apps/arr/ingress.yaml deleted file mode 100644 index 7ff4ed1..0000000 --- a/apps/arr/ingress.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: traefik.containo.us/v1alpha1 -kind: IngressRoute -metadata: - name: ingressroute-arr -spec: - entryPoints: - - websecure - routes: - - match: Host(`torrent.stonegarden.dev`) - kind: Rule - services: - - name: qbittorrent - port: 8112 - middlewares: - - name: traefik-forward-auth - tls: - certResolver: letsencrypt \ No newline at end of file diff --git a/apps/arr/kustomization.yaml b/apps/arr/kustomization.yaml index 32fa228..ead35ee 100644 --- a/apps/arr/kustomization.yaml +++ b/apps/arr/kustomization.yaml @@ -6,7 +6,6 @@ commonLabels: resources: - cm-common-env.yaml - - ingress.yaml - auth.yaml - torrent.yaml - prowlarr.yaml diff --git a/apps/arr/torrent/deployment.yaml b/apps/arr/torrent/deployment.yaml deleted file mode 100644 index 6cad1e6..0000000 --- a/apps/arr/torrent/deployment.yaml +++ /dev/null @@ -1,64 +0,0 @@ -kind: Deployment -apiVersion: apps/v1 -metadata: - name: qbittorrent -spec: - replicas: 1 - selector: - matchLabels: - app: qbittorrent - template: - spec: - volumes: - - name: qbittorrent-config - hostPath: - path: "/disk/etc/qbittorrent" - - name: media-data - hostPath: - path: "/disk/data" - containers: - - name: qbittorrent - image: cr.hotio.dev/hotio/qbittorrent:legacy - volumeMounts: - - mountPath: "/config" - name: qbittorrent-config - - mountPath: "/app/data" - name: media-data - env: - - name: PUID - value: "1000" - - name: PGID - value: "1000" - - name: UMASK - value: "002" - - name: TZ - value: Europe/Oslo - - name: WEBUI_PORT - value: "8080" - ports: - - name: web - containerPort: 8080 - - containerPort: 11010 - protocol: TCP - - containerPort: 11011 - protocol: TCP - - containerPort: 11012 - protocol: TCP - - containerPort: 11013 - protocol: TCP - - containerPort: 11014 - protocol: TCP - - containerPort: 11015 - protocol: TCP - - containerPort: 11010 - protocol: UDP - - containerPort: 11011 - protocol: UDP - - containerPort: 11012 - protocol: UDP - - containerPort: 11013 - protocol: UDP - - containerPort: 11014 - protocol: UDP - - containerPort: 11015 - protocol: UDP \ No newline at end of file diff --git a/apps/arr/torrent/kustomization.yaml b/apps/arr/torrent/kustomization.yaml deleted file mode 100644 index aa10d4a..0000000 --- a/apps/arr/torrent/kustomization.yaml +++ /dev/null @@ -1,10 +0,0 @@ -apiVersion: kustomize.config.k8s.io/v1beta1 -kind: Kustomization -namespace: arr - -commonLabels: - app: qbittorrent - -resources: - - service.yaml - - deployment.yaml \ No newline at end of file diff --git a/apps/arr/torrent/service.yaml b/apps/arr/torrent/service.yaml deleted file mode 100644 index 367b053..0000000 --- a/apps/arr/torrent/service.yaml +++ /dev/null @@ -1,48 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: qbittorrent -spec: - type: LoadBalancer - ports: - - name: web - port: 8112 - targetPort: 8080 - - name: a - port: 11010 - protocol: TCP - - name: b - port: 11011 - protocol: TCP - - name: c - port: 11012 - protocol: TCP - - name: d - port: 11013 - protocol: TCP - - name: e - port: 11014 - protocol: TCP - - name: f - port: 11015 - protocol: TCP - - name: a1 - port: 11010 - protocol: UDP - - name: b1 - port: 11011 - protocol: UDP - - name: c1 - port: 11012 - protocol: UDP - - name: d1 - port: 11013 - protocol: UDP - - name: e1 - port: 11014 - protocol: UDP - - name: f1 - port: 11015 - protocol: UDP - selector: - app: qbittorrent \ No newline at end of file