Skip to content

Commit 9c03282

Browse files
committed
chore: upgrade wordpress and php to latest
Signed-off-by: ffais <ffais@fbk.eu>
1 parent 976c7d7 commit 9c03282

3 files changed

Lines changed: 11 additions & 8 deletions

File tree

wordpress/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: wordpress
33
description: A Helm chart for Wordpress on Kubernetes with NGINX and PHP-FPM
44
type: application
5-
version: 0.1.37
6-
appVersion: "6.7.2"
5+
version: 0.1.38
6+
appVersion: "6.8.3"
77
dependencies:
88
- name: mariadb
99
version: "23.2.1"

wordpress/confs/wordpress/init-script.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ while true; do
2121
if [ $? -eq 0 ]; then
2222
break
2323
fi
24-
echo "DB is not ready, retry in 10 seconds"
24+
echo "DB is not ready, retry in 10 seconds"
2525
sleep 10
2626
done
2727

@@ -30,4 +30,7 @@ if ! wp core is-installed 2>/dev/null; then
3030
echo "WP is not installed. Let's try installing it."
3131
wp core install --url="$wpUrl" --title="$wpTitle" --admin_user="$wpAdminUsername" --admin_email="$wpAdminEmail" --skip-email --admin_password="$wpAdminPassword" --path=/var/www/html/
3232
wp rewrite structure '/%postname%'
33+
wp option update default_pingback_flag closed
34+
wp option update default_ping_status closed
35+
wp option update default_comment_status closed
3336
fi

wordpress/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ wordpress:
2525
name: ""
2626
usernameKey: ""
2727
passwordKey: ""
28-
external:
28+
external:
2929
enabled: false
3030
host: ""
3131
extraEnv: {}
3232

3333
ingress:
3434
enabled: false
3535
className: "nginx"
36-
annotations:
36+
annotations:
3737
# cert-manager.io/cluster-issuer: letsencrypt-prod
3838
# nginx.ingress.kubernetes.io/proxy-body-size: "100m"
3939
hosts:
@@ -140,7 +140,7 @@ php:
140140
repository: wordpress
141141
pullPolicy: IfNotPresent
142142
# Overrides the image tag whose default is the chart appVersion.
143-
tag: "6.8.3-php8.2-fpm-alpine@sha256:73f524a796b450d462e3509b0cbba478d1ac919bae4a67c738b5ad39d1f303be"
143+
tag: "6.8.3-php8.3-fpm-alpine"
144144
imagePullSecrets: []
145145
serviceAccount:
146146
create: true
@@ -166,7 +166,7 @@ php:
166166
service:
167167
type: ClusterIP
168168
port: 9000
169-
resources:
169+
resources:
170170
limits:
171171
memory: "1024Mi"
172172
cpu: "2"
@@ -306,7 +306,7 @@ debug:
306306
image:
307307
repository: wordpress
308308
pullPolicy: IfNotPresent
309-
tag: "cli-php8.2"
309+
tag: "cli-php8.3"
310310
imagePullSecrets: []
311311
serviceAccount:
312312
create: true

0 commit comments

Comments
 (0)