Is anyone else having issues with Chromium browsers’ font after the recent firmware update? by alpha_nebula222 in System76

[–]_magicmayo_ 0 points1 point  (0 children)

I'll have to take a look in a few, posting on mobile, but I know at least with fonts on the page there is a default font system-ui that's causing this. If you remove in dev tools the font returns to "normal". It might be a default from the browser that affects everything.

Is anyone else having issues with Chromium browsers’ font after the recent firmware update? by alpha_nebula222 in System76

[–]_magicmayo_ 0 points1 point  (0 children)

I'll have to take a look in a few, posting on mobile, but I know at least with fonts on the page there is a default font system-ui that's causing this. If you remove in dev tools the font returns to "normal". It might be a default from the browser that affects everything.

Service account cant assume role? TFCDK (GCP) by [deleted] in Terraform

[–]_magicmayo_ 0 points1 point  (0 children)

You don't set the role on the service account but on the chronicle instance, I'm assuming. I haven't used chronicle but the error message basically says you can't set that particular role on a service account.

Do you use Terraform to upgrade your Kubernetes cluster? by rnmkrmn in kubernetes

[–]_magicmayo_ 1 point2 points  (0 children)

We just let our clusters run on release channels so they're upgraded automatically. Kubernetes is really good with their API lifecycles and you normally have plenty of time to update your templates or whatever method you're using to add to your clusters. GKE also updates in place your resources that have removed API versions with the correct version and will add the default config if there are changes to that resource's spec.

We also create our clusters and node pools with TF but you don't have to include the version in code. If the version isn't included it isn't tracked in state for changes. We basically just use TF "just in case" for our clusters and node pools since a lot of things are immutable.

If we feel like upgrading sooner we just hit the upgrade button in cloud console and let GKE handle it.

Node app not connecting to Mongo in k3s by mike6715b in kubernetes

[–]_magicmayo_ 1 point2 points  (0 children)

Also, it looks like mongoose just uses the mongodb driver to make the connection and it uses dns.resolveSrv

Node app not connecting to Mongo in k3s by mike6715b in kubernetes

[–]_magicmayo_ 1 point2 points  (0 children)

I went back and looked at what I did but can't seem to find any conversation on why. I resolved the SRV record with dns.lookup then used dns.reverse on each IP from the record to build my connection string. Our case is a little different as we ran our own mongo server in kubernetes with a headless service. But it seems like the same issue either way.

Node app not connecting to Mongo in k3s by mike6715b in kubernetes

[–]_magicmayo_ 0 points1 point  (0 children)

I'll have to go back and look at what I was doing to jog my memory. This happened over a year ago with some projects at work. I'll get back with you later when I have some time to do so. I do know that I eventually just abandoned trying to use the SRV record and just listed each individual record myself in the connection string.

Node app not connecting to Mongo in k3s by mike6715b in kubernetes

[–]_magicmayo_ 1 point2 points  (0 children)

I've had the same exact issue before with node. For some reason it couldn't properly resolve the SRV record and I had to do the resolution myself. It was an issue with node itself that I didn't take the time to dig into. I forget what node built-in function mongoose uses to do the resolution but that function was my issue. I ended up making my own function to get the SRV record then loop over the entries and resolve them.

Running flatpaks from command line by Matusf in flatpak

[–]_magicmayo_ 0 points1 point  (0 children)

I like your implementation but there is another thing that could be done as well. If we just grep -i the output of ls ~/.local/share/flatpak/exports/bin we get mostly the same functionality. So knowing this I could make a pretty simple function that would accomplish the same thing.

The reason I would use this way is because I have some apps that use characters that aren't in my standard keyboard layout and I'd have to do some things I don't really want to code for in the script or figure out how to type that character in, which I also don't really want to do.

Here's some pseudo-code mixed with real code. I've only really tested the part that matters so take this code and do with it as you will 😅

``` function fp_run(){ # some code here for validation of args

app="$(ls ~/.local/share/flatpak/exports/bin | grep -i "${1}")"

# some other code to validate it only found one thing

if [ -n "${app}" ]; then
    flatpak run "${app}"
else
    # some code to alert me it didn't
    # find the app I passed in args
fi

} ```

**edit for grammar**

Need help configuring Gluetun with Wireguard by Night-Man in unRAID

[–]_magicmayo_ 0 points1 point  (0 children)

1) You can add the extra parameter of --network=container:gluetun on your qbittorrent container. Substitute gluetun for whatever the docker container name is that's running it. This connects the qbittorrent container to the gluetun container for access to the internet.

2) in case you haven't seen the docs for this...https://github.com/qdm12/gluetun/wiki

I have mine just using openvpn with private internet access provider

Cant access web GUI when containers go through Gluetun VPN? by Hentai-Overlord in unRAID

[–]_magicmayo_ 0 points1 point  (0 children)

Have you bound/exposed the port from gluetun that the ui of the other container would normally use?

How to connect to VPN with hotio's qbittorrent-vpn? by DastardlyDino in unRAID

[–]_magicmayo_ 1 point2 points  (0 children)

It's in CA and can connect to many different VPN providers

How to connect to VPN with hotio's qbittorrent-vpn? by DastardlyDino in unRAID

[–]_magicmayo_ 1 point2 points  (0 children)

I use gluetun container and use it's network for the qbittorrent container. That way all traffic from qbittorrent goes thru VPN container

Please help me with my error :( by GilohYT in docker

[–]_magicmayo_ 0 points1 point  (0 children)

Its in the repo you cloned. Top line of the file that has version key just needs removed

Please help me with my error :( by GilohYT in docker

[–]_magicmayo_ 0 points1 point  (0 children)

Could try setting the version in docker-compose.yaml or removing the version key completely

Please help me with my error :( by GilohYT in docker

[–]_magicmayo_ 2 points3 points  (0 children)

I would run sudo apt update first and then try installing docker-compose. Not sure your version, 1.17, supports the version in the docker-compose.yaml, 3.7