iluminae
@iluminae@lemmy.world
- Comment on How to detect problems on computer? 6 months ago:
Are you running them from your user session? If so, when you log out it will stop your processes, unless you have enabled ‘linger’ mode.
- Comment on [deleted] 6 months ago:
Ok but we can see it says Furry Fandom as the page you are on, there is no way we just like, ignore that - right?
- Comment on Restart Docker Container Without root privileges 7 months ago:
You could write a script that just restarts your container, make sure unprivileged users cannot edit it, and do one of two things:
- make a sudoers entry for your unprivileged account to call just that script as a user in the docker group with sudo
- use setuid on the script to have it execute from the docker group even from other users
- Comment on K3s+Wireguard(?) 8 months ago:
K8s has a mild solution to chicken and egg situations for nodes - the nodes support ‘static manifests’ which can be pods they know how to bring up before ever connecting to the API server. So you could have your wireguard peer be brought up this way. Downside is while those static manifests show up in k8s APIs, they aren’t fully manageable since they are defined by files on disk.
- Comment on What are your homelab stats? 10 months ago:
My day job is a lot of kube/openshift so nomad is refreshing. Having the template blocks are amazing and makes it so that much of what helm gave me is not required. Parameterized jobs are the best once you find a good use case for them!
- Comment on What are your homelab stats? 10 months ago:
- 33 nomad jobs, most being containers
- 12 physical nomad clients
- 3 amd64 poweredge
- 2 pi4
- 6 Nano Pi r5c
- 1 odroid M1
- Ceph: (nomad orchestrated)
- 8 OSD
- 50TB total raw disk
- Comment on Auto execs are coming clean: EVs aren't working 1 year ago:
Make. An. Affordable. Car.
Why does every new ev for the US have to be mega deluxe luxury SUV? No one in the US is buying your affordable EV because you only sell them in Europe!
- Comment on Docker vs Podman, which one to choose for a beginner and why ? 1 year ago:
A year or two ago (whenever docker changed the business license of docker for Mac) I changed to podman and aliased docker=podman. It behaves the same, you would just about never know rootful podman vs docker.
Rootless podman is super cool and a much better security ideal - but comparing more apples to apples would be podman running as root vs docker.
- Comment on Docker vs Podman, which one to choose for a beginner and why ? 1 year ago:
Buildah lacks any sort of caching … what? assuming you are using a Containerfile… what? It’s… the same as docker on layer caching. The --cache-to and --cache-from flags are particularly sweet.
- Comment on ‘Smart toilet’ that takes anal prints wins Ig Nobel Prize 1 year ago:
And just 9 years after the idea was on adult swim.
- Comment on HashiCorp's license change [LWN.net] 1 year ago:
Most of the freak out I have seen I interpret as: “license says we can’t use it while competing with you but that has no real definition”
To me, it seems like an acceptable license, especially since development is happening on GitHub and they take PRs. Also the feature in the license where it reverts back to MPL after 4y is a nice security against the company doing anything else crazy restrictive - as you can plan on falling back to that version as a nuclear option.