diff --git a/apps/homarr/deployment.yaml b/apps/homarr/deployment.yaml deleted file mode 100644 index 7837c89..0000000 --- a/apps/homarr/deployment.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: homarr - namespace: homarr -spec: - selector: - matchLabels: - app: homarr - replicas: 1 - template: - metadata: - labels: - app: homarr - spec: - containers: - - name: homarr - image: ghcr.io/ajnart/homarr:latest - ports: - - containerPort: 7575 - volumeMounts: - - name: config - mountPath: /app/data/configs - - name: data - mountPath: /data - - name: icons - mountPath: /app/public/icons - env: - - name: DISABLE_ANALYTICS - value: "true" - - name: TZ - value: America/Sao_Paulo - volumes: - - name: config - persistentVolumeClaim: - claimName: config - - name: data - persistentVolumeClaim: - claimName: data - - name: icons - persistentVolumeClaim: - claimName: icons diff --git a/apps/homarr/ingress.yaml b/apps/homarr/ingress.yaml deleted file mode 100644 index ae1bcd6..0000000 --- a/apps/homarr/ingress.yaml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: homarr - namespace: homarr -spec: - tls: - - hosts: - - totorinho.duckdns.org - secretName: duckdns-wildcard-cert-totorinho.duckdns.org - rules: - - host: totorinho.duckdns.org - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: homarr - port: - number: 7575 diff --git a/apps/homarr/kustomization.yaml b/apps/homarr/kustomization.yaml deleted file mode 100644 index 3245c70..0000000 --- a/apps/homarr/kustomization.yaml +++ /dev/null @@ -1,8 +0,0 @@ -apiVersion: kustomize.config.k8s.io/v1beta1 -kind: Kustomization -resources: - - namespace.yaml - - pvc.yaml - - deployment.yaml - - service.yaml - - ingress.yaml diff --git a/apps/homarr/namespace.yaml b/apps/homarr/namespace.yaml deleted file mode 100644 index 2db5ebc..0000000 --- a/apps/homarr/namespace.yaml +++ /dev/null @@ -1,4 +0,0 @@ -apiVersion: v1 -kind: Namespace -metadata: - name: homarr diff --git a/apps/homarr/pvc.yaml b/apps/homarr/pvc.yaml deleted file mode 100644 index f304f88..0000000 --- a/apps/homarr/pvc.yaml +++ /dev/null @@ -1,35 +0,0 @@ -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: config - namespace: homarr -spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi ---- -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: data - namespace: homarr -spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi ---- -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: icons - namespace: homarr -spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi diff --git a/apps/homarr/service.yaml b/apps/homarr/service.yaml deleted file mode 100644 index c04c1bd..0000000 --- a/apps/homarr/service.yaml +++ /dev/null @@ -1,11 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: homarr - namespace: homarr -spec: - selector: - app: homarr - ports: - - port: 7575 - targetPort: 7575 diff --git a/apps/kustomization.yaml b/apps/kustomization.yaml index e8d2742..f0a03b2 100644 --- a/apps/kustomization.yaml +++ b/apps/kustomization.yaml @@ -2,4 +2,3 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - media - # - homarr