Skip to content

Instantly share code, notes, and snippets.

@mauriballes
Created October 22, 2020 02:23
Show Gist options
  • Save mauriballes/32876fc2432201fcbcf049d7092cfab7 to your computer and use it in GitHub Desktop.
Save mauriballes/32876fc2432201fcbcf049d7092cfab7 to your computer and use it in GitHub Desktop.
Helm Value for Wordpress in Kubernetes with External DB
## Blog/Site Info
wordpressUsername: user
wordpressPassword: password
wordpressEmail: email@example.com
wordpressFirstName: Mauricio
wordpressLastName: Ballesteros
wordpressBlogName: mauriballes' Blog!
service:
type: ClusterIP
## Database Settings
externalDatabase:
host: 127.0.0.1
user: user
password: password
database: wordpress
## Disabling MariaDB
mariadb:
enabled: false
# Ingress
ingress:
enabled: true
hostname: example.com
path: /
tls: true
annotations:
kubernetes.io/ingress.class: "nginx"
cert-manager.io/cluster-issuer: "letsencrypt-prod"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment