Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2023-01-02 08:41:28 +00:00
parent f216b8c675
commit 98d472601e
13 changed files with 19 additions and 18 deletions

View File

@@ -1,9 +0,0 @@
## [wordpress-1.0.11](https://github.com/truecharts/charts/compare/wordpress-1.0.10...wordpress-1.0.11) (2022-12-27)
### Chore
- update helm general non-major ([#5856](https://github.com/truecharts/charts/issues/5856))

View File

@@ -4,6 +4,11 @@
## [wordpress-1.1.0](https://github.com/truecharts/charts/compare/wordpress-1.0.11...wordpress-1.1.0) (2023-01-02)
## [wordpress-1.0.11](https://github.com/truecharts/charts/compare/wordpress-1.0.10...wordpress-1.0.11) (2022-12-27)
### Chore

View File

@@ -24,7 +24,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/wordpress
- https://hub.docker.com/_/wordpress
- https://www.wordpress.org
version: 1.0.11
version: 1.1.0
annotations:
truecharts.org/catagories: |
- website

View File

@@ -0,0 +1,4 @@
## [wordpress-1.1.0](https://github.com/truecharts/charts/compare/wordpress-1.0.11...wordpress-1.1.0) (2023-01-02)

View File

@@ -30,29 +30,30 @@ data:
WORDPRESS_SMTP_PORT: {{ .Values.smtp.port | quote }}
{{- end }}
{{- $php := get .Values "php-config" }}
{{/* PHP */}}
{{- with .Values.wordpress.PHP_ENABLE_OPCACHE }}
{{- with $php.PHP_ENABLE_OPCACHE }}
PHP_ENABLE_OPCACHE: {{ . | quote }}
{{- end }}
{{- with .Values.wordpress.PHP_EXPOSE_PHP }}
{{- with $php.PHP_EXPOSE_PHP }}
PHP_EXPOSE_PHP: {{ . | quote }}
{{- end }}
{{- with .Values.wordpress.PHP_MAX_EXECUTION_TIME }}
{{- with $php.PHP_MAX_EXECUTION_TIME }}
PHP_MAX_EXECUTION_TIME: {{ . | quote }}
{{- end }}
{{- with .Values.wordpress.PHP_MAX_INPUT_TIME }}
{{- with $php.PHP_MAX_INPUT_TIME }}
PHP_MAX_INPUT_TIME: {{ . | quote }}
{{- end }}
{{- with .Values.wordpress.PHP_MAX_INPUT_VARS }}
{{- with $php.PHP_MAX_INPUT_VARS }}
PHP_MAX_INPUT_VARS: {{ . | quote }}
{{- end }}
{{- with .Values.wordpress.PHP_MEMORY_LIMIT }}
{{- with $php.PHP_MEMORY_LIMIT }}
PHP_MEMORY_LIMIT: {{ . | quote }}
{{- end }}
{{- with .Values.wordpress.PHP_POST_MAX_SIZE }}
{{- with $php.PHP_POST_MAX_SIZE }}
PHP_POST_MAX_SIZE: {{ . | quote }}
{{- end }}
{{- with .Values.wordpress.PHP_UPLOAD_MAX_FILESIZE }}
{{- with $php.PHP_UPLOAD_MAX_FILESIZE }}
PHP_UPLOAD_MAX_FILESIZE: {{ . | quote }}
{{- end }}
---