Related
Secure Federated Chat: Self Host Matrix on Kubernetes
How to self host a Matrix.org server
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
How to self host a Matrix.org server
Related
How Open-Chats Federation Enables anybody to host anything anywhere
Related
A n8n workflow setup, that synchronizes workflow and credential changes directly to github