Skip to content

Commit d8435d2

Browse files
authored
SYS-671 update wordpress helm chart - 6.9.1 (#259)
1 parent d1b4648 commit d8435d2

8 files changed

Lines changed: 19 additions & 16 deletions

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ easy. Contents:
1111
| --------- | ----------- |
1212
| ansible | build your own Kubernetes cluster |
1313
| images | images which are published to Docker Hub |
14-
| k8s | container resources in kubernetes yaml format |
14+
| k8s | kubernetes resources and helm charts |
1515
| lib/build | build makefile and tools |
1616
| services | non-clustered docker-compose services |
1717
| ssl | PKI certificate tools (deprecated by k8s) |
@@ -121,4 +121,8 @@ Thank you to the following contributors!
121121
* [Alberto Galera](https://github.com/agalera)
122122
* [Andrew Eacott](https://github.com/andreweacott)
123123

124+
### Contributing
125+
126+
If you want to make improvements to this software, see [CONTRIBUTING](https://github.com/instantlinux/docker-tools/blob/main/CONTRIBUTING.md).
127+
124128
Contents created 2017-26 under [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0) by Rich Braun.

ansible/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ansible==12.3.0
22
ansible-lint==26.1.1
3-
pip==25.3
3+
pip==26.0

images/data-sync/helm/values.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,8 @@ configmap:
115115
ignore = Path data-sync/share/artifactory/data/logs/request.log
116116
ignore = Path data-sync/share/nagios/var/rw
117117
ignore = Path data-sync/share/openldap/data/lock.mdb
118-
ignore = Path data-sync/share/snappymail/data/_data_/_default_/cache
118+
ignore = Path data-sync/share/snappymail/data/_default_/cache
119119
ignore = Path data-sync/dos
120-
ignore = Path data-sync/gitlab/data/gitaly
121120
ignore = Path data-sync/home/*/.kube/cache
122121
ignore = Path data-sync/jira/home/analytics-logs
123122
ignore = Path data-sync/jira/home/log/automation-jira-performance.csv

images/mysqldump/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ a subdirectory "mysql" in volume "backup".
1212
### Usage
1313
Before running it, grant access to a mysql user thus:
1414
~~~
15-
mysql> GRANT SELECT,RELOAD,SUPER,REPLICATION CLIENT ON *.* TO
15+
mysql> GRANT SELECT,RELOAD,REPLICATION CLIENT ON *.* TO
1616
'$USER'@'10.%' IDENTIFIED BY '$PSWD';
1717
~~~
1818
Make sure the named volume "backup" exists, and that

k8s/Makefile.versions

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
# Third-party versions - dockerhub
2-
export VERSION_DASHBOARD ?= 7.10.0
3-
export VERSION_NGINX ?= 1.29.3-alpine
4-
# deprecated
5-
export VERSION_LOGSPOUT ?= v3.2.14
6-
7-
# Third-party versions - other (quay.io, k8s.gcr.io, crunchydata.com)
1+
# Third-party versions
82
export VERSION_CERT_MANAGER ?= 1.19.2
93
export VERSION_DEFAULTBACKEND ?= 1.5
104
export VERSION_FLANNEL ?= 0.28.0

k8s/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,3 +373,6 @@ notes are as of Jan 2019 on version 1.13.1:
373373
place what the restore procedure is and where to get the decyption
374374
codes. The k8s-cplane ansible playbook here should help.
375375

376+
### Contributing
377+
378+
If you want to make improvements to this software, see [CONTRIBUTING](https://github.com/instantlinux/docker-tools/blob/main/CONTRIBUTING.md).

k8s/helm/wordpress/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ sources:
66
- https://github.com/instantlinux/docker-tools
77
- https://build.trac.wordpress.org/browser
88
type: application
9-
version: 0.1.4
10-
appVersion: "6.1.1-php7.4-apache"
9+
version: 0.1.5
10+
appVersion: "6.9.1-php8.4-apache"
1111
dependencies:
1212
- name: chartlib
1313
version: 0.1.8

k8s/helm/wordpress/values.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,12 @@ volumeMounts:
5454
- mountPath: /usr/local/etc/php/conf.d/local-php.ini
5555
name: init
5656
subPath: local-php.ini
57-
- mountPath: /var/www/html
57+
- mountPath: /var/www/html/wp-config.php
5858
name: share
59-
subPath: wordpress/html
59+
subPath: wordpress-ci/html/wp-config.php
60+
- mountPath: /var/www/html/wp-content
61+
name: share
62+
subPath: wordpress/html/wp-content
6063
volumes:
6164
- name: init
6265
configMap:

0 commit comments

Comments
 (0)