Skip to content
Snippets Groups Projects
Verified Commit b620c2c1 authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

redo changes from master branch

parent ad9190e8
No related branches found
No related tags found
1 merge request!1Resolve "with_items deprecation"
Pipeline #4193 passed with stage
in 50 seconds
apiVersion: v1
appVersion: "5.2.3"
appVersion: "5.4.1"
description: WordPress with a replicated MariaDB backend
name: wordpress
# Please only change the chart version as part of the release procedure: see
# RELEASING.md
version: 0.1.0
version: 0.1.1
icon: https://make.wordpress.org/design/files/2016/09/WordPress-logotype-wmark.png
......@@ -4,9 +4,9 @@ When releasing a new version of the wordpress-helm chart, please remember to do
the following:
* change the chart version in `Chart.yaml`;
* change the default `image.tag` and `initImage.tag` in `values.yaml` to the new
version (e.g., "0.1.0");
* create a git tag for the new version (e.g., "0.1.0") and push it to Gitlab
version (e.g., "0.1.2");
* create a git tag for the new version (e.g., "0.1.2") and push it to Gitlab
(any branch will do); the CI will create and push docker images tagged by that
same version string.
(You can push all git tags using `git push --tags`, or this specific one using
`git push origin 0.1.0`.)
`git push origin 0.1.2`.)
......@@ -22,6 +22,9 @@ spec:
# gets re-run.
checksum/config: {{ include (print $.Template.BasePath "/ansible-vars.yaml") . | sha256sum }}
checksum/config: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
{{- if .Values.podAnnotations }}
{{- toYaml .Values.podAnnotations | nindent 8 }}
{{- end }}
spec:
imagePullSecrets:
- name: {{ .Values.initImage.imagePullSecretName }}
......
......@@ -28,7 +28,8 @@ wordpress:
theme: twentynineteen
# NOTE: Make sure you use underscore and that the localisation is in full caps
locale: en_US
version: 5.2.4
# NOTE: Optionally set a Wordpress version number to override the default
# version: LOCAL-WORDPRESS-VERSION-NUMBER-OR-DELETE-THIS-LINE
# NOTE: This is the URL that points to your WordPress installation. If this
# URL is set incorrectly your site will most likely not work. You can not
# change it after you have run helm install once because WordPress saves the
......
......@@ -87,7 +87,7 @@ wordpress:
theme_fallback: twentytwenty
# NOTE: Make sure you use underscore and that the localisation is in full caps
locale: en_US
version: 5.2.3
version: 5.4.1
url: "http://localhost"
title: "Wordpress Helm"
## If including a plugin to alias wp login then set a path for alt and also set the config
......@@ -171,15 +171,14 @@ ansibleVars:
wpSalts: {}
image:
repository: docker.greenhost.net/open/wordpress-helm/wordpress
tag: 0.1.0
repository: open.greenhost.net:4567/openappstack/wordpress-helm/wordpress
tag: 0.1.1
pullPolicy: Always
initImage:
repository: docker.greenhost.net/open/wordpress-helm/wordpress-cli-ansible
tag: 0.1.0
repository: open.greenhost.net:4567/openappstack/wordpress-helm/wordpress-cli-ansible
tag: 0.1.1
pullPolicy: Always
imagePullSecretName: greenhost-registry-pull
ingress:
enabled: false
......
FROM wordpress:cli-2.1.0-php7.3
FROM wordpress:cli-2.4-php7.3
USER root
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment