Related
Expose NAT Services Across Two Kubernetes Clusters with Tailscale
A production-style setup to publish private k3s services through a public microk8s edge cluster using the Tailscale Kubernetes Operator.
Popular topics
A quick, repeatable way to run WordPress on Kubernetes using the maintained TrueCharts chart. Small footprint, TLS via cert-manager, and a clean ingress.
The TrueCharts WordPress chart ships via OCI and builds on the TrueCharts common library for consistent values and sane defaults.
helm install wp oci://oci.trueforge.org/truecharts/wordpress \
--namespace blogging \
--create-namespace \
-f values.wordpress.yaml
Sanitize domains, credentials, and secret names for the target setup.
ingress:
main:
enabled: true
ingressClassName: public
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
nginx.ingress.kubernetes.io/proxy-body-size: "0"
hosts:
- host: wp.<your-domain>
paths:
- path: /
pathType: Prefix
tls:
- hosts: [wp.<your-domain>]
secretName: wp-<your-domain>-tls
wordpress:
user: "<admin-username>"
pass: "<strong-password>"
workload:
main:
replicas: 1
podSpec:
containers:
main:
env:
WORDPRESS_EXTRA_WP_CONFIG_CONTENT: |
define('WP_HOME','https://wp.<your-domain>');
define('WP_SITEURL','https://wp.<your-domain>');
resources:
requests:
cpu: "500m"
memory: "1Gi"
limits:
cpu: "4"
memory: "8Gi"
Notes:
ingress and cert-manager are installed and a ClusterIssuer named letsencrypt-prod exists.wp.<your-domain> to the ingress IP. After install, visit https://wp.<your-domain>.Related
A production-style setup to publish private k3s services through a public microk8s edge cluster using the Tailscale Kubernetes Operator.
Related
A full copy/paste-ready walkthrough to install CloudNativePG, deploy PostgreSQL on Kubernetes, bootstrap users and tables, and verify with Python.
Related
A hands-on experiment building a self-managed at-home AI cluster with k3s, Ollama, and LiteLLM.