mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/wordpress] Add a parameter to specify the scheme to generate application URLs (#16136)
Signed-off-by: juan131 <juan@bitnami.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
ec0377f886
commit
cb15bc1b2f
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: wordpress
|
||||
version: 7.0.1
|
||||
version: 7.1.0
|
||||
appVersion: 5.2.2
|
||||
description: Web publishing platform for building blogs and websites.
|
||||
icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png
|
||||
|
||||
@@ -66,6 +66,7 @@ The following table lists the configurable parameters of the WordPress chart and
|
||||
| `wordpressLastName` | Last name | `LastName` |
|
||||
| `wordpressBlogName` | Blog name | `User's Blog!` |
|
||||
| `wordpressTablePrefix` | Table prefix | `wp_` |
|
||||
| `wordpressScheme` | Scheme to generate application URLs [`http`, `https`] | `http` |
|
||||
| `allowEmptyPassword` | Allow DB blank passwords | `true` |
|
||||
| `allowOverrideNone` | Set Apache AllowOverride directive to None | `false` |
|
||||
| `customHTAccessCM` | Configmap with custom wordpress-htaccess.conf directives | `nil` |
|
||||
|
||||
@@ -102,6 +102,8 @@ spec:
|
||||
value: {{ ternary "yes" "no" .Values.wordpressSkipInstall | quote }}
|
||||
- name: WORDPRESS_TABLE_PREFIX
|
||||
value: {{ .Values.wordpressTablePrefix | quote }}
|
||||
- name: WORDPRESS_SCHEME
|
||||
value: {{ .Values.wordpressScheme | quote }}
|
||||
{{- if .Values.smtpHost }}
|
||||
- name: SMTP_HOST
|
||||
value: {{ .Values.smtpHost | quote }}
|
||||
|
||||
@@ -70,6 +70,11 @@ wordpressBlogName: User's Blog!
|
||||
##
|
||||
wordpressTablePrefix: wp_
|
||||
|
||||
## Scheme to generate application URLs
|
||||
## ref: https://github.com/bitnami/bitnami-docker-wordpress#environment-variables
|
||||
##
|
||||
wordpressScheme: http
|
||||
|
||||
## Skip wizard installation (only if you use an external database that already contains WordPress data)
|
||||
## ref: https://github.com/bitnami/bitnami-docker-wordpress#connect-wordpress-docker-container-to-an-existing-database
|
||||
##
|
||||
|
||||
@@ -70,6 +70,11 @@ wordpressBlogName: User's Blog!
|
||||
##
|
||||
wordpressTablePrefix: wp_
|
||||
|
||||
## Scheme to generate application URLs
|
||||
## ref: https://github.com/bitnami/bitnami-docker-wordpress#environment-variables
|
||||
##
|
||||
wordpressScheme: http
|
||||
|
||||
## Skip wizard installation (only if you use an external database that already contains WordPress data)
|
||||
## ref: https://github.com/bitnami/bitnami-docker-wordpress#connect-wordpress-docker-container-to-an-existing-database
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user