HomarrH
Homarr2y ago
30 replies
Ash

Internal Server Error (ERR_INVALID_URL)

I have installed homarr into Kubernetes with the following config.

apiVersion: apps/v1
kind: StatefulSet
metadata:
  name: homarr
  namespace: infra
spec:
  replicas: 1
  selector:
    matchLabels:
      app: homarr
  serviceName: homarr
  template:
    metadata:
      labels:
        app: homarr
    spec:
      containers:
        - image: ghcr.io/ajnart/homarr:latest
          name: homarr
          ports:
            - containerPort: 7575
              name: homarr
          volumeMounts:
            - mountPath: "/app/data/configs"
              name: config
            - mountPath: "/app/public/icons"
              name: icons
            - mountPath: "/data"
              name: data
      terminationGracePeriodSeconds: 10
  volumeClaimTemplates:
    - metadata:
        name: config
      spec:
        accessModes:
          - ReadWriteOnce
        resources:
          requests:
            storage: 100M
        storageClassName: vsan-compute
        volumeMode: Filesystem
    - truncated due to discord limits: ...
---
apiVersion: v1
kind: Service
metadata:
  annotations: {}
  name: homarr
  namespace: infra
spec:
  ports:
  - name: http
    port: 80
    protocol: TCP
    targetPort: 7575
  selector:
    app: homarr
  type: LoadBalancer


Visiting http://homarr.infra.local => Internal Server Error

TypeError [ERR_INVALID_URL]: Invalid URL
    at new NodeError (node:internal/errors:399:5)
    ...
    at require (node:internal/modules/helpers:121:18) {
  input: 'http://:7575',
  code: 'ERR_INVALID_URL'
}


I have tried forwarding the port to my local, and I get the same issue.
Was this page helpful?