Created
October 22, 2020 02:23
-
-
Save mauriballes/32876fc2432201fcbcf049d7092cfab7 to your computer and use it in GitHub Desktop.
Helm Value for Wordpress in Kubernetes with External DB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Blog/Site Info | |
wordpressUsername: user | |
wordpressPassword: password | |
wordpressEmail: [email protected] | |
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