mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-19 10:06:18 +10:00
Synchronize upstreamed folder to abf3585
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
name: ghost
|
||||
version: 4.0.15
|
||||
appVersion: 1.25.4
|
||||
version: 4.0.16
|
||||
appVersion: 1.25.5
|
||||
description: A simple, powerful publishing platform that allows you to share your
|
||||
stories with the world
|
||||
keywords:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
dependencies:
|
||||
- name: mariadb
|
||||
repository: https://kubernetes-charts.storage.googleapis.com/
|
||||
version: 4.3.2
|
||||
version: 4.3.3
|
||||
digest: sha256:8a53e73537f5a2d9073c3b1173b9c6b814c2baeb2e8e31485e2ad52172c0b296
|
||||
generated: 2018-08-10T08:56:29.286309729Z
|
||||
generated: 2018-08-14T16:34:51.754043943Z
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/ghost
|
||||
tag: 1.25.4-debian-9
|
||||
tag: 1.25.5-debian-9
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: wordpress
|
||||
version: 2.1.8
|
||||
version: 2.1.10
|
||||
appVersion: 4.9.8
|
||||
description: Web publishing platform for building blogs and websites.
|
||||
icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png
|
||||
|
||||
@@ -59,7 +59,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_` |
|
||||
| `allowEmptyPassword` | Allow DB blank passwords | `yes` |
|
||||
| `allowEmptyPassword` | Allow DB blank passwords | `true` |
|
||||
| `smtpHost` | SMTP host | `nil` |
|
||||
| `smtpPort` | SMTP port | `nil` |
|
||||
| `smtpUser` | SMTP user | `nil` |
|
||||
|
||||
@@ -28,7 +28,11 @@ spec:
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
|
||||
env:
|
||||
- name: ALLOW_EMPTY_PASSWORD
|
||||
value: {{ .Values.allowEmptyPassword | quote }}
|
||||
{{- if .Values.allowEmptyPassword }}
|
||||
value: "yes"
|
||||
{{- else }}
|
||||
value: "no"
|
||||
{{- end }}
|
||||
- name: MARIADB_HOST
|
||||
{{- if .Values.mariadb.enabled }}
|
||||
value: {{ template "mariadb.fullname" . }}
|
||||
|
||||
@@ -53,9 +53,9 @@ wordpressBlogName: User's Blog!
|
||||
##
|
||||
wordpressTablePrefix: wp_
|
||||
|
||||
## Set to `yes` to allow the container to be started with blank passwords
|
||||
## Set to `false` to allow the container to be started with blank passwords
|
||||
## ref: https://github.com/bitnami/bitnami-docker-wordpress#environment-variables
|
||||
allowEmptyPassword: yes
|
||||
allowEmptyPassword: true
|
||||
|
||||
## SMTP mail delivery configuration
|
||||
## ref: https://github.com/bitnami/bitnami-docker-wordpress/#smtp-configuration
|
||||
|
||||
Reference in New Issue
Block a user