Related
Self-Hosted n8n on Kubernetes (Helm chart)
Minimal, repeatable setup to run n8n with TLS behind nginx ingress using the 8gears Helm chart.
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
Minimal, repeatable setup to run n8n with TLS behind nginx ingress using the 8gears Helm chart.
Related
Tiny guide to deploy Uptime-Kuma on a self-hosted Kubernetes cluster using a maintained Helm chart.
Related
Set up Slack notifications for deployments using GitHub Actions and the Python slack_sdk package, keeping your team updated automatically.