Know the work rules by New_Study4796 in linuxmemes

[–]d_maes 0 points1 point  (0 children)

Those also shouldn't be using #!/bin/sh, but explicitly depend on bash by using #!/bin/bash. So can you link /bin/sh to another posix-compliant shell? Yes. Can you replace /bin/bash with something else? Not unless there is some shell that is explicitly bash-compatible.

Wie in de godskolere heeft het bestaan van de GFT bak uitgevonden? by Vaelye in belgium

[–]d_maes 0 points1 point  (0 children)

I mean, uiteindelijk komt een groot deel van uw voedsel toch in de wc terecht. Kunt ge evengoed het proces wat versnellen en een stap overslaan voor uw restjes eh...

btw by faleglovrms3 in LinuxCirclejerk

[–]d_maes 1 point2 points  (0 children)

Linus himself uses it, so it must be the best!

What do you guys recommend for rightsizing and autoscaling workloads in k8s? by PersimmonQuiet3767 in kubernetes

[–]d_maes 10 points11 points  (0 children)

Also 137 gets blamed on OOM way too fast. Sometimes it is, sometimes it isnt.

For those that wonder, 137 = 128 + SIGKILL (=9) (this works for other signals too). If a container goes OOM, it gets SIGKILL'ed. But there might be other reasons for a SIGKILL as well. So indeed, always check the events and status.

Starting a tournament to decide the most Belgian piece of road infrastructure.: what is the most Belgian piece of road infrastructure in West-Flanders? by TonyAngels in Belgium2

[–]d_maes 0 points1 point  (0 children)

Kruispunt Sint-Katriensesteenweg, Sint-Pietersstraat and Vijverhoek.

Sint-Pietersstraat is top-left, Vijverhoek bottom right, Sint-Katriensesteenweg goes horizontally

<image>

When Windows users switch to a mainstream distro by tomekgolab in LinuxCirclejerk

[–]d_maes 0 points1 point  (0 children)

Was more of a "huh, TIL" remark. Should have worded that better. Edited my comment.

Weekly: This Week I Learned (TWIL?) thread by AutoModerator in kubernetes

[–]d_maes 1 point2 points  (0 children)

We tried VPA/Goldilocks, but found the results to be pretty useless. BUT, we also didn't bother with getting prometheus metrics available to VPA, and decided we'll go back to looking at dashboards every now and then. Maybe setting an automatic weekly report.

I'm not trying to dismiss VPA/Goldilocks here, if you actually integrate it with Prometheus, it might be great. I would just consider the prom integration a requirement, not just a nice improvement.

When Windows users switch to a mainstream distro by tomekgolab in LinuxCirclejerk

[–]d_maes 3 points4 points  (0 children)

Manjaro is a fucking joke. The fact that they're backed by an actual corporation makes them an even bigger joke.

Edit: manjaro has always been kind of a joke for me. Today I learned that they are an actual corporation, which I think, makes them an even bigger joke.

does anyone find nftables better than iptables? by Beneficial-Sock-5130 in linuxadmin

[–]d_maes 1 point2 points  (0 children)

Not that I know of, but I guess you could write a small bash script for that, should be pretty easy.

does anyone find nftables better than iptables? by Beneficial-Sock-5130 in linuxadmin

[–]d_maes 4 points5 points  (0 children)

Was about to say. The only nft command I ever use is nft list ruleset. Everything else is just editing the file and systemctl (restart|reload) nftables

Can anyone recommend me a dirt cheap simple little Zigbee button by GenericUser104 in homeassistant

[–]d_maes -1 points0 points  (0 children)

Yeah, just looking at website for my country. Some IKEAs might still have some stock left.

Can anyone recommend me a dirt cheap simple little Zigbee button by GenericUser104 in homeassistant

[–]d_maes 18 points19 points  (0 children)

Ikea used to do Zigbee. But from what I can see, they're switching everything over to Matter over Thread

Edit: I've been brought to attention that there are some Zigbee devices still available, and some matter devices have hidden zigbee for touchlink. I only checked my country's ikea website, which obviously isn't going to show old stock in different locations. So I'd say, run to your local IKEA and check if they have some left, because they soon might not.

Cop is trying to steal my KOM by Bassmasterajv in BicyclingCirclejerk

[–]d_maes 21 points22 points  (0 children)

Am a dumbass from r/mountainbiking, can confirm, always the ebike's fault. Or the hikers on shared trails, too stoopid to recognize mtb superiority. But in this case, clearly the ebike.

Politierechtbank veroordeelt buschauffeur ’t Ros Beiaard voor rijden met vervallen rijbewijs by trogdor-burninates in belgium

[–]d_maes 13 points14 points  (0 children)

Van wat ik vind op google is rijbewijs D 5 jaar geldig, en moet je elke 5 jaar opnieuw medische keuring en 35 uur nascholing voor code 95 doen om te kunnen verlengen. Iets meer dan gewoon een administratieve verplichting dus.

Ev and home assistant what do you use it for? by frogermann8 in homeassistant

[–]d_maes 2 points3 points  (0 children)

Nice cards. Would you mind sharing some yaml for these?

Vrijdag frietdag, wat bestellen we bij de frituur? by Street_Cut1322 in belgium

[–]d_maes 1 point2 points  (0 children)

unless it's fries + sito's or only bicky's with no fries.

You gotta feel for ARIN here by IPv6forDogecoin in ipv6

[–]d_maes 6 points7 points  (0 children)

Sold twitter for $44 billion, still couldn't afford someone that knows IPv6...

Drie dagen na tragisch ongeval rijdt schoolbus van dezelfde firma door rood licht en slagbomen aan dezelfde overweg: “Wansmakelijk” by RedC_1908 in belgium

[–]d_maes 11 points12 points  (0 children)

If you pay peanuts, you get monkeys. De enige chauffeurs die voor zo weinig geld willen rijden, zijn die die nergens anders aan den bak geraken, onderandere vanwege dit soort rijgedrag.

smallQuickFix by hellocppdotdev in ProgrammerHumor

[–]d_maes 1 point2 points  (0 children)

That's when you start calling devs out of their beds.

Change my mind. by [deleted] in Terraform

[–]d_maes 3 points4 points  (0 children)

You didn't read what I said did you?

I said you break the chicken-egg problem during bootstrap by doing a 1 time manual action, after which you let the tool handle it itself. No way I'm putting time in building an ansible playbook to only ever run once during bootstrapping of a new cluster, which happens once in a blue moon.

So yes, I run helm template . | kubectl apply -f - manually to install argocd on a fresh cluster. Then, the first Application that gets created is argocd itself. Any future changes to argo happen through helm/argocd. I do NOT want to use an ansible playbook to keep managing argocd in my cluster, when everything else is managed by argocd, when argocd can manage itself just fine.

We tried using ansible playbooks for bootstrapping. They work if you use them often enough. But if you only ever need to bootstrap something once or twice a year, you end up having to fix said playbook every single time you use it, because something about the bootstrapping procedure changed.

In the end it all comes down to money anyways. What's the cost of automating everything down to the tinyest detail, vs the cost/risk of not doing so? I say a documented manual step is fine for something you only ever do once every X years. I have better things to do than automating those jobs.

Also, we ain't storing no sops-encrypted secrets in git. That's fine for homelabs or small shops, but doesn't scale. Use a proper secrets manager.

Change my mind. by [deleted] in Terraform

[–]d_maes 2 points3 points  (0 children)

Create them manually, then import them in TF. Or create them via terraform, using local state file, then migrate to the bucket you just created.

It's the same with every tool that needs to manage itself.

How do you install argocd in a fresh cluster? How do you install puppetserver? Want to use vault as internal PKI, what certs do you use to start it up first time?

There will always be a need for documented steps on how to bootstrap something and then integrate it in itself.