Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/drupal/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: drupal
apiVersion: v2
type: application
version: 2.0.0-beta4
version: 2.0.0-beta5
appVersion: 6.1.4
description: Helm Chart for deploying an enterprise-grade Drupal environment.
keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/drupal/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# drupal

![Version: 2.0.0-beta4](https://img.shields.io/badge/Version-2.0.0--beta4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.1.4](https://img.shields.io/badge/AppVersion-6.1.4-informational?style=flat-square)
![Version: 2.0.0-beta5](https://img.shields.io/badge/Version-2.0.0--beta5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.1.4](https://img.shields.io/badge/AppVersion-6.1.4-informational?style=flat-square)

Helm Chart for deploying an enterprise-grade Drupal environment.

Expand Down
2 changes: 1 addition & 1 deletion charts/drupal/templates/cronjob/cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:

# Pre Install scripts
{{- if $values.drupal.cron.preInstallScripts }}
{{ toYaml $values.drupal.cron.preInstallScripts | nindent 16 }}
{{ $values.drupal.cron.preInstallScripts | nindent 16 }}
{{- end }}

{{ $cron.script | indent 16 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/drupal/templates/cronjob/drupal-backup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ spec:

# Pre Install scripts
{{- if .Values.drupal.cron.preInstallScripts }}
{{ toYaml .Values.drupal.cron.preInstallScripts | nindent 16 }}
{{ .Values.drupal.cron.preInstallScripts | nindent 16 }}
{{- end }}

# Wait for DB to be available
Expand Down
2 changes: 1 addition & 1 deletion charts/drupal/templates/cronjob/drupal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ spec:

# Pre Install scripts
{{- if .Values.drupal.cron.preInstallScripts }}
{{ toYaml .Values.drupal.cron.preInstallScripts | nindent 16 }}
{{ .Values.drupal.cron.preInstallScripts | nindent 16 }}
{{- end }}

# Wait for DB to be available
Expand Down
4 changes: 2 additions & 2 deletions charts/drupal/templates/job/post-install-site-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:

# Pre Install scripts
{{- if .Values.drupal.preInstallScripts }}
{{ toYaml .Values.drupal.preInstallScripts | nindent 14}}
{{ .Values.drupal.preInstallScripts | nindent 14}}
{{- end }}

{{- if .Values.mysql.enabled }}
Expand Down Expand Up @@ -199,7 +199,7 @@ spec:

# Extra installation scripts
{{- if .Values.drupal.postInstallScripts }}
{{ toYaml .Values.drupal.postInstallScripts | nindent 14}}
{{ .Values.drupal.postInstallScripts | nindent 14}}
{{- end }}
env:
{{- include "drupal.env" . | nindent 10 }}
Expand Down
4 changes: 2 additions & 2 deletions charts/drupal/templates/job/post-upgrade-reconfigure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:

# Pre Upgrade scripts
{{- if .Values.drupal.preUpgradeScripts }}
{{ toYaml .Values.drupal.preUpgradeScripts | nindent 14}}
{{ .Values.drupal.preUpgradeScripts | nindent 14}}
{{- end }}

{{- if .Values.mysql.enabled }}
Expand Down Expand Up @@ -123,7 +123,7 @@ spec:

# Post Upgrade scripts
{{- if .Values.drupal.postUpgradeScripts }}
{{ toYaml .Values.drupal.postUpgradeScripts | nindent 14}}
{{ .Values.drupal.postUpgradeScripts | nindent 14}}
{{- end }}
env:
{{- include "drupal.env" . | nindent 10 }}
Expand Down