leanpub, to books
@leanpub@mastodon.social avatar

Leanpub book launch video! Crossplane: The Cloud Native Control Plane by Viktor Farcic https://youtu.be/Hn7j11Zzi5o

opensuse, to AWS
@opensuse@fosstodon.org avatar

Check out the talk on at the Community Summit in Berlin this month! Learn about the Pagure Plugin system, CodePipeline CI integration, running Pagure on & more! https://events.opensuse.org/conferences/CSBerlin/program/proposals/4608

mattb, to Kubernetes
@mattb@hachyderm.io avatar

Why did it go out of fashion to run kubelet in a container? What are the limitations of doing that?

xahteiwi,
@xahteiwi@mastodon.social avatar

@mattb If the answer is "because not everything should run in a container", I'm gonna laugh my head off.

ramsey, to Kubernetes
@ramsey@phpc.social avatar

I’m interested in running (i.e., ) as the app server for a website. The website has multiple domains pointing to it, and I plan to run this in a cluster. Can someone point to any docs or blog posts that show how others have set up similar configurations with Caddy or FrankenPHP, especially with regard to how Caddy magically configures HTTPS for the domains in this kind of setup?

Hariboas,
@Hariboas@phpc.social avatar

@heiglandreas @ramsey

Have not done something like that but @dunglas might have some more experience with it.

dunglas,
@dunglas@mastodon.social avatar

@ramsey to do so, you’ll have to either expose Caddy using a K8s Load Balancer, or to use Caddy/FrankenPHP as a K8s ingress controller (https://github.com/caddyserver/ingress).

Another option is to let your existing ingress controller do the TLS termination (you can use projects cert-manager to automatically manage the certificates, and many cloud ingresses also have native support Let’s Enctypt or automatic cert generation).

adminmagazine, to aitools
@adminmagazine@hachyderm.io avatar

In this free focus guide, we take you inside the #Docker toolset and show you how to quickly and consistently build secure containers https://mailchi.mp/admin-magazine.com/docker-focus-guide
#containers #SoftwareDevelopment #tools #automation #security #applications #OpenSource #Kubernetes

apricote, to Kubernetes
@apricote@hachyderm.io avatar

My team at Cloud is looking for a Go developer to work on our Open Source integrations.

This position is remote within Germany. Reach out to me or to the email mentioned on the job page if you are interested or have any questions :)

https://hetzner-cloud.de/en/jobs/1555896

koen, to Kubernetes
@koen@procolix.social avatar

@alainvanhoof presents from scratch.

koen,
@koen@procolix.social avatar

@alainvanhoof image of how you install

koen,
@koen@procolix.social avatar

@alainvanhoof image of how you install for use with

BjornW, to opensource Dutch
@BjornW@mastodon.social avatar

Vandaag bij de conferentie in Utrecht! Deze keer zijn we met meer dan 200 gelijkgestemden voor een prachtig programma:
https://nluug.nl/evenementen/nluug/voorjaarsconferentie-2024/

Doe je iets met , of dan moet je erbij zijn. In november heb je weer een kans, want we organiseren 2x
p/jr een conferentie.

We zijn een vereniging, dus je kan lid worden! Zie: https://nluug.nl

Vragen? Stel ze direct aan ons:
@nluug

wyri, to Kubernetes
@wyri@haxim.us avatar

Having to recycle your #kubernetes nodes because the #HPA isn't scaling up your #Mastodon #sidekiq so you're now lagging 15K jobs behind looks like this in the #UI:

wyri,
@wyri@haxim.us avatar

Ok ok I admit that I recycled my nodes because I could. Kicking the pod probably also would have fixed it but they where up for 82 days and it felt fun

wyri, to php
@wyri@haxim.us avatar

Had fun this weekend working on a performance focussed proof of concept using Bunny in the interop contracts. The first metrics are in using the cluster on my home cluster. (Which isn't meant for high performance. Still pleased by these numbers.)

wyri,
@wyri@haxim.us avatar

Whoops kept it running for over an hour while running errands 😅 . Liking the ease of use of what I'm building to far

vwbusguy, to Kubernetes
@vwbusguy@mastodon.online avatar

is generally my default goto for image bases when I'm writing stuff from scratch. I love how lightweight and simple it is, so I'll often start there until I can prove that I need something more complex.

vwbusguy,
@vwbusguy@mastodon.online avatar

On that note - need to move some data to S3? Here's an image I pushed today that includes and zip and gets built/tested/pushed weekly by our Jenkins farm at my $DAYJOB. Perfect for a sidecar container or CronJob backup, etc. Enjoy! (And if this is useful to you, thank the Alpine and s3cmd folks, because they by far did most of the work.)

https://hub.docker.com/r/ucsb/s3cmd

ramsey, to Kubernetes
@ramsey@phpc.social avatar

Why isn’t --record=true the default behavior when applying changes to a #Kubernetes deployment?

ramsey,
@ramsey@phpc.social avatar

@alessandrolai Like when creating a deployment. It tells it to record the command used to create the deployment. If you don’t use it, then it doesn’t record the command, so if you update your deployment and don’t tell it to record, then when you look at your history, you see each revision, but not the command that made the revision.

alessandrolai,
@alessandrolai@phpc.social avatar

@ramsey I always only did kubectl apply for changes, never delved deeper so I didn't know this option! I switched to Helm that handles revisions automatically for rollbacks too...

I was searching around to understand it and I stumbled on this, it seems they're deprecating it: https://stackoverflow.com/questions/73814500/record-has-been-deprecated-then-what-is-the-alternative

vwbusguy, to Kubernetes
@vwbusguy@mastodon.online avatar

I'm beyond annoyed that there's still no volume definitions for with run or create job.

osjobhub, to opensource
@osjobhub@fosstodon.org avatar

Are you looking for a new role in open source? Browse 500+ jobs on from companies including @acquia @mozilla @wikimediafoundation and more! https://opensourcejobhub.com/jobs/

jay, to Kubernetes
@jay@toot.zerojay.com avatar

Decided to sit down and try to learn #kubernetes despite the fact that I don't have any real need for it on my little home server. Still, it's been interesting and - I won't lie - a bit frustrating at times. It's very much like using a chainsaw to butter my bread for my use case, but I had a nice feeling of satisfaction when I succeeded in getting #owncast set up through it. I've had some odd issues with Docker failing to launch certain containers through containerd that I have not been able to figure out, however.

I was putting thought into maybe redoing my server setup with kubernetes but I sincerely worry that I'll run into this same containerd issue with some of my other apps.

#selfhost #selfhosting #linux

gooser3000,
@gooser3000@mastodon.social avatar

@jay podman's a "replacement" for docker. The commands are essentially the same as you can do podman build, podman run, etc., just like docker build, etc. ( https://docs.podman.io/en/latest/Commands.html ) Some have symlinked docker -> podman to get scripts to just work. The "k8s" part is that you can feed a k8s-style yaml file (with some types of resources like pods and volumes) to podman play kube ( https://docs.podman.io/en/v4.2/markdown/podman-play-kube.1.html ) and it'll run the container on the local system (like kubectl apply).

jay,
@jay@toot.zerojay.com avatar

@gooser3000 I knew a bit about podman offering rootless docker essentially but not the rest. I'll check it out, thanks.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • thenastyranch
  • rosin
  • GTA5RPClips
  • osvaldo12
  • love
  • Youngstown
  • slotface
  • khanakhh
  • everett
  • kavyap
  • mdbf
  • DreamBathrooms
  • ngwrru68w68
  • provamag3
  • magazineikmin
  • InstantRegret
  • normalnudes
  • tacticalgear
  • cubers
  • ethstaker
  • modclub
  • cisconetworking
  • Durango
  • anitta
  • Leos
  • tester
  • JUstTest
  • All magazines