Managing Kubernetes configurations with Helmfile| Field Notes
This page contains a list of commonly used kubectl commands and flags. Note:These instructions are for Kubernetes v1.33. To check the version, use the kubectl version command. Kubectl autocomplete BASH source <(kubectl completion bash) # set up autocomplete in bash into the current shell, bash-completion package should be installed first. echo "source <(kubectl completion bash)" >> ~/.bashrc # add autocomplete permanently to your bash shell. You can also use a shorthand alias for kubectl that...| Kubernetes
TL;DR ¶ Some of the wisdom contained in Josh Bloch’s Effective Java book is relevant to Go. panic and recover are best reserved for exceptional circumstances. Reliance on panic and recover can noticeably slow down execution, incurs heap allocations, and precludes inlining. Internal handling of failure cases via panic and recover is tolerable and sometimes beneficial. Abusing Java exceptions for control flow ¶ Even though my Java days are long gone and Go has been my language of predilecti...| jub0bs.com
The overengineering behind this blog. Or is it not over-engineered?| dicioccio.fr
Caddy is a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go| caddyserver.com
Go includes a safe and somewhat performant templating library. But the best way to structure code using html/template has eluded me for a long time.| paul.totterman.name
Learn how to package and deploy your OpenFaaS functions with Helm.| OpenFaaS - Serverless Functions Made Simple
Advanced Templating v2| external-secrets.io
I created and released a simple CLI tool to render Go templates using data from YAML, JSON, or TOML files.| michenriksen.com
Policy-based control for cloud native environments| Open Policy Agent
I’ve moved my blog content build to hugo more than a year ago, but I still forget how to achieve some basic things in Hugo or where to find them in the docs. I’ve put together this cheatsheet to help me later on. I hope it’ll benefit you as well.| Mátyás Budavári
Overview ¶| pkg.go.dev
Overview ¶| pkg.go.dev
This is a cross-post from the original post on LinkedIn.| jonnylangefeld.com
Hugo can output content in multiple formats, including calendar events, e-book formats, Google AMP, and JSON search indexes, or any custom text format.| gohugo.io
Simple Lists is a tiny to-do list web application written in Go, with old school server-side rendering and no JavaScript.| benhoyt.com
Go is one of my favorite programming languages, but it is still far from perfect.| Seth Vargo