Slyke

Results 130 comments of Slyke

There is no `influxdb.conf`, everything is configured with `services/influxdb/influxdb.env`. ``` #INFLUXDB_DB=mydb INFLUXDB_DATA_ENGINE=tsm1 INFLUXDB_REPORTING_DISABLED=false #INFLUXDB_HTTP_AUTH_ENABLED=true INFLUXDB_ADMIN_ENABLED=true INFLUXDB_ADMIN_USER=root INFLUXDB_ADMIN_PASSWORD=MYP45SW0RDO INFLUXDB_USER=influxuser INFLUXDB_USER_PASSWORD=MYOTH3RP45SW0RDO INFLUXDB_READ_USER=read INFLUXDB_READ_USER_PASSWORD=AND4NOTH3RP45SW0RDO #INFLUXDB_WRITE_USER=mywriteuser #INFLUXDB_WRITE_USER_PASSWORD=mywritepassword ``` I'm not too familiar with influxdb,...

In addition to what @ruiquelhas said, I also had to: ``` mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) ``` And then restart the server. If you are...

My home network is running on `10.7.0.0/16`, so I tried setting the Server Interface Address to `10.7.0.0/16` and `10.7.60.12/16` (the IP of the actual node the pod is on) independently,...

@cgmastertecnology nope, still not able to get it to work.

Not stale. Issue is still outstanding.

Nope, I can see Wireguard attempting to send data, but nothing ever comes back. Yep, it's the remote Wireguard VPN's IP.

What happens if you restart all the flannel pods? ``` $ kubectl delete pod -n kube-system -l app=flannel ```

This sounds related to: https://github.com/flannel-io/flannel/issues/1474 Try restarting Flannel with `$ kubectl delete pod -n kube-system -l app=flannel` and if it works, then it's that issue.

I don't have the ability to merge. I'm just a random contributor too. ![image](https://github.com/rebane2001/matterport-dl/assets/6442613/22d14bc9-8776-4543-b083-2c00a82f900a)

Hey @stobias123 you might want to update your YAML to this ``` apiVersion: apps/v1 kind: Deployment metadata: name: netbird spec: selector: matchLabels: app: netbird replicas: 1 template: metadata: labels: app:...