summaryrefslogtreecommitdiff
path: root/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist
diff options
context:
space:
mode:
Diffstat (limited to 'playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist')
-rw-r--r--playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/deployment.yaml77
-rw-r--r--playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/ingress.yaml25
-rw-r--r--playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/kustomization.yaml8
-rw-r--r--playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/service.yaml22
4 files changed, 0 insertions, 132 deletions
diff --git a/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/deployment.yaml b/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/deployment.yaml
deleted file mode 100644
index 9e5acd9..0000000
--- a/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/deployment.yaml
+++ /dev/null
@@ -1,77 +0,0 @@
----
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: dirlist
- namespace: media
-spec:
- replicas: 1
- selector:
- matchLabels:
- app.kubernetes.io/created-by: tyil
- app.kubernetes.io/managed-by: manual
- app.kubernetes.io/name: dirlist
- app.kubernetes.io/part-of: media
- template:
- metadata:
- labels:
- app.kubernetes.io/created-by: tyil
- app.kubernetes.io/managed-by: manual
- app.kubernetes.io/name: dirlist
- app.kubernetes.io/part-of: media
- spec:
- containers:
- - name: miniserve
- image: docker.io/svenstaro/miniserve:latest
- args:
- - "--enable-tar-gz"
- - "--qrcode"
- - "--enable-tar"
- - "/var/www"
- ports:
- - containerPort: 8080
- volumeMounts:
- - name: anime-movies
- mountPath: /var/www/anime-movies
- readOnly: true
- - name: anime-series
- mountPath: /var/www/anime-series
- readOnly: true
- - name: books
- mountPath: /var/www/books
- readOnly: true
- - name: movies
- mountPath: /var/www/movies
- readOnly: true
- - name: music
- mountPath: /var/www/music
- readOnly: true
- - name: series
- mountPath: /var/www/series
- readOnly: true
- volumes:
- - name: anime-movies
- hostPath:
- type: Directory
- path: /mnt/media/anime-movies/exported
- - name: anime-series
- hostPath:
- type: Directory
- path: /mnt/media/anime-series/exported
- - name: books
- hostPath:
- type: Directory
- path: /mnt/media/books/exported
- - name: movies
- hostPath:
- type: Directory
- path: /mnt/media/movies/exported
- - name: music
- hostPath:
- type: Directory
- path: /mnt/media/music/exported
- - name: series
- hostPath:
- type: Directory
- path: /mnt/media/series/exported
-...
diff --git a/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/ingress.yaml b/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/ingress.yaml
deleted file mode 100644
index 4a87af7..0000000
--- a/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/ingress.yaml
+++ /dev/null
@@ -1,25 +0,0 @@
----
-apiVersion: networking.k8s.io/v1
-kind: Ingress
-metadata:
- name: dirlist
- namespace: media
- labels:
- app.kubernetes.io/created-by: tyil
- app.kubernetes.io/managed-by: manual
- app.kubernetes.io/name: dirlist
- app.kubernetes.io/part-of: media
-spec:
- ingressClassName: "nginx"
- rules:
- - host: media.tyil.nl
- http:
- paths:
- - path: /
- pathType: Prefix
- backend:
- service:
- name: dirlist
- port:
- number: 80
-...
diff --git a/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/kustomization.yaml b/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/kustomization.yaml
deleted file mode 100644
index 5ee3790..0000000
--- a/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/kustomization.yaml
+++ /dev/null
@@ -1,8 +0,0 @@
----
-apiVersion: kustomize.config.k8s.io/v1beta1
-kind: Kustomization
-resources:
-- deployment.yaml
-- ingress.yaml
-- service.yaml
-...
diff --git a/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/service.yaml b/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/service.yaml
deleted file mode 100644
index 14e9c61..0000000
--- a/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/media/dirlist/service.yaml
+++ /dev/null
@@ -1,22 +0,0 @@
----
-apiVersion: v1
-kind: Service
-metadata:
- name: dirlist
- namespace: media
- labels:
- app.kubernetes.io/created-by: tyil
- app.kubernetes.io/managed-by: manual
- app.kubernetes.io/name: dirlist
- app.kubernetes.io/part-of: media
-spec:
- selector:
- app.kubernetes.io/created-by: tyil
- app.kubernetes.io/managed-by: manual
- app.kubernetes.io/name: dirlist
- app.kubernetes.io/part-of: media
- ports:
- - protocol: TCP
- port: 80
- targetPort: 8080
-...