* feat(Wordpress): Add Wordpress * Remove extra space * Fix templates * fix repo and set to alpine * fix port * Update values.yaml * Update values.yaml * Update values.yaml * Update values.yaml * Update values.yaml * Update values.yaml * Update questions.yaml * Update values.yaml * Update questions.yaml * Update values.yaml * Update values.yaml * Update questions.yaml * Update values.yaml * Update values.yaml * Update values.yaml * add secret.tpl + GUI changes * update * add newline * update mariadb * Update values.yaml * fix env variable * fix secrets for smtp * fix db * update * update apache port * update templates * trying something for kicks * revert * update tpls * add secretEnv * update image tag + fix pass * Update charts/incubator/wordpress/templates/_env.tpl Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Signed-off-by: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com> * start with this * More changes * fix db_host * add port_number * Update charts/incubator/wordpress/templates/_env.tpl Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * added salts + php values * lint? * the opposite lol * I don't understand lol * ? * cleanup * fixe * Update charts/incubator/wordpress/values.yaml Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * Apply suggestions from code review Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * Apply suggestions from code review Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * Update charts/incubator/wordpress/values.yaml Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * fix sec * Update charts/incubator/wordpress/questions.yaml Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * Update charts/incubator/wordpress/values.yaml Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Signed-off-by: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com> Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Xstar97 <Xstar97@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
63 lines
1.1 KiB
YAML
63 lines
1.1 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/wordpress
|
|
pullPolicy: IfNotPresent
|
|
tag: 6.1.1@sha256:e8e4080c7cdb2f1b33710fd2db137ce89847af879d7bfd44dcad1a006f70a66d
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
|
|
podSecurityContext:
|
|
runAsGroup: 0
|
|
|
|
wordpress:
|
|
user: user
|
|
pass: bitnami
|
|
email: user@example.com
|
|
first_name: TrueCharts
|
|
last_name: TrueCharts
|
|
blog_name: Truecharts Blog
|
|
|
|
smtp:
|
|
enabled: false
|
|
host: ""
|
|
port: ""
|
|
user: ""
|
|
pass: ""
|
|
|
|
php-config:
|
|
PHP_ENABLE_OPCACHE: "yes"
|
|
PHP_EXPOSE_PHP: ""
|
|
PHP_MAX_EXECUTION_TIME: ""
|
|
PHP_MAX_INPUT_TIME: ""
|
|
PHP_MAX_INPUT_VARS: ""
|
|
PHP_MEMORY_LIMIT: 512M
|
|
PHP_POST_MAX_SIZE: ""
|
|
PHP_UPLOAD_MAX_FILESIZE: ""
|
|
|
|
envFrom:
|
|
- configMapRef:
|
|
name: '{{ include "tc.common.names.fullname" . }}-env-config'
|
|
- secretRef:
|
|
name: '{{ include "tc.common.names.fullname" . }}-env-secret'
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: HTTP
|
|
port: 10591
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /bitnami/wordpress
|
|
|
|
mariadb:
|
|
enabled: true
|
|
mariadbUsername: wordpress
|
|
mariadbDatabase: wordpress
|
|
existingSecret: mariadbcreds
|
|
|
|
portal:
|
|
enabled: true
|