Published
All published posts
I’ve never seen or needed to use a serversideapply in kubernetes before, but I ran into this same issue in my k3s homelab while installing cloudnative-pg.
You can do it with argo
apiVersion: argoproj.io/v1alpha1 kind: Application spec: syncPolicy: syncOptions: - ServerSideApply=true
and you can do it with kubectl
I fixed lists in my blog
A small improvement to my blog today. I was checking out my /now post and noticed that lists have left padding but no discs or numbers. I popped open my tailwind/app.css added these lines and rebuilt.
#post-body li { @apply list-disc; } #post-body ol { @apply list-decimal; }
And rebuild, which I actually do with ⭐ casey...
...
I built out a tool for myself to manage my nvim configuration, and I wanted to quickly see which one I am running in my starship prompt. Here’s the config I ended up with. It warns if the NVIM_APPNAME environment variable is not set, and it shows which nvim I am using if it is set.
snorlax by moonbeam-nyc is a game-changer in its space. Excited to see how it evolves.
wake and sleep Kubernetes deployments on a schedule
I came across headlamp from kubernetes-sigs, and it’s packed with great features and ideas.
A Kubernetes web UI that is fully-featured, user-friendly and extensible
Just starred headlamp by headlamp-k8s. It’s an exciting project with a lot to offer.
A Kubernetes web UI that is fully-featured, user-friendly and extensible
The work on gitui by extrawurst.
Blazing 💥 fast terminal-ui for git written in rust 🦀
Nerdfont cheatsheet is a fantastic way to copy paste icons into your shell. I just used it to juice up my starship prompt with my current $NVIM_APPNAME managed by nvim-manager
I recently noticed that my og images were missing emoji. They were taken using headless chrome in a container. I fixed it by adding an emoji font in the containerfile / dockerfile.
RUN apt-get update && apt-get install -y \ # Add fonts with emoji support fonts-noto-color-emoji \ && rm -rf /var/lib/apt/lists/*
Before #
Here’s what they were looking like with broken emoji fonts.
And now with the fixed emoji font.
I put thought bubbles on my thoughts posts and stars on my github stars posts
I recently discovered kube-no-trouble by doitintl, and it’s truly impressive.
Easily check your clusters for use of deprecated APIs
For my next drive upgrade in my homelab I am gong to be using one of these factory recertified drives from serverpartdeals.com. Found them on an LTT video awhile back. They are some lightly used and recertified, fully burnt in drives.
Shop for drives that are certified once again by the manufacturer to work like new. Factory ReCertified drives are cost-effective alternatives compared to factory-sealed new counter parts. Additionally, unlike in mass production, the re-certification process involves closer attention to the overall operation of the hardware so that the re-certification will not have to happen a 2nd time
dust is one of my favorite rust rewrite tools. Its so useful for narrowing down file system bloat and cleaning up some disk space on your nearly full disks. It runs right in your terminal and gives you a nice bar graph on the top directories in use.
Keycloak looks like an interesting way to setup sso. It’s part of the cncf so it’s got a good backing. I want something better for argo workflows and this might be it. I’m curious what else I can tie into it.