Skip to content

Commit

Permalink
Commit new Chart releases for TrueCharts
Browse files Browse the repository at this point in the history
  • Loading branch information
truecharts-admin committed May 1, 2024
1 parent f9cc8d8 commit 8d88ac5
Show file tree
Hide file tree
Showing 16 changed files with 15 additions and 14 deletions.
3 changes: 0 additions & 3 deletions development/wordpress/8.0.4/app-changelog.md

This file was deleted.

File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/wordpress
- https://hub.docker.com/r/bitnami/wordpress
type: application
version: 8.0.4
version: 8.0.6
File renamed without changes.
3 changes: 3 additions & 0 deletions development/wordpress/8.0.6/app-changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@


## [wordpress-8.0.6]wordpress-8.0.6 (2024-05-01)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ questions:
type: dict
attrs:
- variable: enabled
label: Enable SMTP
label: Specify your own Salts to use?
schema:
type: boolean
default: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ configmap:
WORDPRESS_DATABASE_PORT_NUMBER: "3306"
{{- else }}
WORDPRESS_DATABASE_PORT_NUMBER: {{ .Values.mariadb.mariadbPort | quote }}
WORDPRESS_TABLE_PREFIX: {{ .Values.mariadb.wordpressTablePrefix | quote }}
{{- end }}
WORDPRESS_DATABASE_USER: {{ .Values.mariadb.mariadbUsername | quote }}
WORDPRESS_DATABASE_NAME: {{ .Values.mariadb.mariadbDatabase | quote }}
Expand Down Expand Up @@ -78,15 +79,15 @@ secret:
{{- end }}

{{/* Salts */}}
{{- if .Values.wordpress.specified_salts }}
WORDPRESS_AUTH_KEY: {{ .Values.wordpress.wordpressAuthKey | quote }}
WORDPRESS_SECURE_AUTH_KEY: {{ .Values.wordpress.wordpressSecureAuthKey | quote }}
WORDPRESS_LOGGED_IN_KEY: {{ .Values.wordpress.wordpressLoggedInKey | quote }}
WORDPRESS_NONCE_KEY: {{ .Values.wordpress.wordpressNonceKey | quote }}
WORDPRESS_AUTH_SALT: {{ .Values.wordpress.wordpressAuthSalt | quote }}
WORDPRESS_SECURE_AUTH_SALT: {{ .Values.wordpress.wordpressSecureAuthSalt | quote }}
WORDPRESS_LOGGED_IN_SALT: {{ .Values.wordpress.wordpressLoggedInSalt | quote }}
WORDPRESS_NONCE_SALT: {{ .Values.wordpress.wordpressNonceSalt | quote }}
{{- if .Values.wordpress.specified_salts.enabled }}
WORDPRESS_AUTH_KEY: {{ .Values.wordpress.specified_salts.wordpressAuthKey | quote }}
WORDPRESS_SECURE_AUTH_KEY: {{ .Values.wordpress.specified_salts.wordpressSecureAuthKey | quote }}
WORDPRESS_LOGGED_IN_KEY: {{ .Values.wordpress.specified_salts.wordpressLoggedInKey | quote }}
WORDPRESS_NONCE_KEY: {{ .Values.wordpress.specified_salts.wordpressNonceKey | quote }}
WORDPRESS_AUTH_SALT: {{ .Values.wordpress.specified_salts.wordpressAuthSalt | quote }}
WORDPRESS_SECURE_AUTH_SALT: {{ .Values.wordpress.specified_salts.wordpressSecureAuthSalt | quote }}
WORDPRESS_LOGGED_IN_SALT: {{ .Values.wordpress.specified_salts.wordpressLoggedInSalt | quote }}
WORDPRESS_NONCE_SALT: {{ .Values.wordpress.specified_salts.wordpressNonceSalt | quote }}
{{- else }}
WORDPRESS_AUTH_KEY: {{ include "wordpress.fetch" (dict "ns" .Release.Namespace "var" "WORDPRESS_AUTH_KEY" "secret" $secretName) }}
WORDPRESS_SECURE_AUTH_KEY: {{ include "wordpress.fetch" (dict "ns" .Release.Namespace "var" "WORDPRESS_SECURE_AUTH_KEY" "secret" $secretName) }}
Expand Down
File renamed without changes.

0 comments on commit 8d88ac5

Please sign in to comment.