drupal 0.3.1 (#93)

Updates Drupal image version to 8.1.9-r1 and MariaDB dependency
including fixes for the OpenSSL security update
(https://www.openssl.org/news/secadv/20160922.txt)
This commit is contained in:
Adnan Abdulhussein
2016-09-27 09:58:25 -07:00
committed by Vic Iglesias
parent e40757f62f
commit cdcc922dee
7 changed files with 14 additions and 29 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: drupal
version: 0.3.0
version: 0.3.1
description: One of the most versatile open source content management systems.
keywords:
- drupal
+1 -1
View File
@@ -1,5 +1,5 @@
name: mariadb
version: 0.3.0
version: 0.3.1
description: Chart for MariaDB
keywords:
- mariadb
+8 -8
View File
@@ -52,14 +52,14 @@ The command removes all the Kubernetes components associated with the chart and
The following tables lists the configurable parameters of the MariaDB chart and their default values.
| Parameter | Description | Default |
|-----------------------|----------------------------------|----------------------------------------------------------|
| `imageTag` | `bitnami/mariadb` image tag. | Most recent release |
| `imagePullPolicy` | Image pull policy. | `Always` if `imageTag` is `latest`, else `IfNotPresent`. |
| `mariadbRootPassword` | Password for the `root` user. | `nil` |
| `mariadbUser` | Username of new user to create. | `nil` |
| `mariadbPassword` | Password for the new user. | `nil` |
| `mariadbDatabase` | Name for new database to create. | `nil` |
| Parameter | Description | Default |
| ----------------------- | ---------------------------------- | ---------------------------------------------------------- |
| `image` | MariaDB image | `bitnami/mariadb:{VERSION}` |
| `imagePullPolicy` | Image pull policy. | `Always` if `imageTag` is `latest`, else `IfNotPresent`. |
| `mariadbRootPassword` | Password for the `root` user. | `nil` |
| `mariadbUser` | Username of new user to create. | `nil` |
| `mariadbPassword` | Password for the new user. | `nil` |
| `mariadbDatabase` | Name for new database to create. | `nil` |
The above parameters map to the env variables defined in [bitnami/mariadb](http://github.com/bitnami/bitnami-docker-mariadb). For more information please refer to the [bitnami/mariadb](http://github.com/bitnami/bitnami-docker-mariadb) image documentation.
@@ -14,18 +14,3 @@ We truncate at 24 chars because some Kubernetes name fields are limited to this
{{- $name := default .Chart.Name .Values.nameOverride -}}
{{- printf "%s-%s" .Release.Name $name | trunc 24 -}}
{{- end -}}
{{/*
Get the imagePullPolicy.
*/}}
{{- define "imagePullPolicy" -}}
{{- if .Values.imagePullPolicy -}}
{{- .Values.imagePullPolicy -}}
{{- else -}}
{{- if eq .Values.imageTag "latest" -}}
{{- "Always" -}}
{{- else -}}
{{- "IfNotPresent" -}}
{{- end -}}
{{- end -}}
{{- end -}}
@@ -18,8 +18,8 @@ spec:
spec:
containers:
- name: {{ template "fullname" . }}
image: "bitnami/mariadb:{{ .Values.imageTag }}"
imagePullPolicy: {{ template "imagePullPolicy" . }}
image: "{{ .Values.image }}"
imagePullPolicy: {{ default "" .Values.imagePullPolicy | quote }}
env:
- name: MARIADB_ROOT_PASSWORD
valueFrom:
+1 -1
View File
@@ -2,7 +2,7 @@
## ref: https://hub.docker.com/r/bitnami/mariadb/tags/
##
## Default: none
imageTag: 10.1.14-r3
image: bitnami/mariadb:10.1.17-r1
## Specify a imagePullPolicy
## Default to 'Always' if imageTag is 'latest', else set to 'IfNotPresent'
+1 -1
View File
@@ -1,7 +1,7 @@
## Bitnami Drupal image version
## ref: https://hub.docker.com/r/bitnami/drupal/tags/
##
image: bitnami/drupal:8.1.9-r0
image: bitnami/drupal:8.1.9-r1
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'