Cannot create property 'url' on boolean 'true' #19706
FalkWinkler
started this conversation in
Show and tell
Replies: 1 comment 1 reply
-
Same issue on my side. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If i use the Environment Variables
ZIGBEE2MQTT_CONFIG_FRONTEND_PORT
orZIGBEE2MQTT_CONFIG_FRONTEND_URL
i have configuration Errors
I deploy in kubenetes:
`apiVersion: apps/v1
kind: StatefulSet
metadata:
name: zigbee2mqtt
spec:
selector:
matchLabels:
app: zigbee2mqtt
serviceName: zigbee2mqtt
template:
metadata:
labels:
app: zigbee2mqtt
spec:
containers:
- name: zigbee2mqtt
image: ghcr.io/koenkk/zigbee2mqtt:latest
resources:
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 8080
volumeMounts:
- name: data
mountPath: /data
volumeClaimTemplates:
name: data
spec:
accessModes: [ "ReadWriteOnce" ]
storageClassName: ceph-block
resources:
requests:
storage: 1Gi`
without the FRONTEND properties works fine.
Beta Was this translation helpful? Give feedback.
All reactions