File tree Expand file tree Collapse file tree 4 files changed +13
-14
lines changed Expand file tree Collapse file tree 4 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 1
1
dependencies:
2
2
- name: common
3
3
repository: oci://registry-1.docker.io/cloudpirates
4
- version: 1.0.0
4
+ version: 1.1.1
5
5
- name: mariadb
6
6
repository: oci://registry-1.docker.io/cloudpirates
7
- version: 0.2.7
8
- digest: sha256:0184e5d0bc6577f2895705084ba0b10d13116d202f6b0d1a239f3aa3db931837
9
- generated: "2025-09-19T13:08:15.586897 +02:00"
7
+ version: 0.3.0
8
+ digest: sha256:4e89daee4a04df25da46810f73b277003ebff8ca938c308ed55214e9a8893183
9
+ generated: "2025-09-30T22:09:51.820397 +02:00"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : ghost
3
3
description : A simple, powerful publishing platform that allows you to share your stories with the world.
4
4
type : application
5
- version : 0.1 .0
5
+ version : 0.2 .0
6
6
appVersion : " 6.0.9"
7
7
keywords :
8
8
- ghost
@@ -22,7 +22,7 @@ dependencies:
22
22
version : " 1.x.x"
23
23
repository : oci://registry-1.docker.io/cloudpirates
24
24
- name : mariadb
25
- version : " 0.2 .x"
25
+ version : " 0.3 .x"
26
26
repository : oci://registry-1.docker.io/cloudpirates
27
27
condition : mariadb.enabled
28
28
icon : https://a.storyblok.com/f/143071/512x512/a130ba5305/ghost-logo.svg
Original file line number Diff line number Diff line change 32
32
{{ . | nindent 6 }}
33
33
{{- end }}
34
34
serviceAccountName : {{ include "ghost.serviceAccountName" . }}
35
- securityContext :
36
- {{- toYaml .Values.podSecurityContext | nindent 8 }}
35
+ securityContext : {{ include "common.renderPodSecurityContext" . | nindent 8 }}
37
36
{{- if .Values.mariadb.enabled }}
38
37
initContainers :
39
38
- name : wait-for-mariadb
44
43
- >
45
44
retries=0;
46
45
max_retries=15;
47
- until [ $retries -ge $max_retries ] || mariadb-admin ping -h {{ include "ghost.fullname " . }}-mariadb
46
+ until [ $retries -ge $max_retries ] || mariadb-admin ping -h {{ include "ghost.name " . }}-mariadb
48
47
-P {{ .Values.mariadb.service.port }}
49
48
-u{{ .Values.mariadb.auth.username }}
50
49
-p{{ .Values.mariadb.auth.password }}
@@ -57,14 +56,14 @@ spec:
57
56
fi;
58
57
sleep 2;
59
58
done;
60
- securityContext :
61
- {{- toYaml .Values.containerSecurityContext | nindent 12 }}
59
+ securityContext : {{ include "common.renderContainerSecurityContext" . | nindent 12 }}
62
60
{{- end }}
63
61
containers :
64
62
- name : {{ .Chart.Name }}
65
- securityContext : {{- toYaml .Values.containerSecurityContext | nindent 12 }}
63
+ securityContext : {{ include "common.renderContainerSecurityContext" . | nindent 12 }}
66
64
image : {{ include "ghost.image" . | quote }}
67
65
imagePullPolicy : {{ include "common.imagePullPolicy" (dict "image" .Values.image) }}
66
+ # command: ["tail", "-f", "/dev/null"]
68
67
ports :
69
68
{{- range .Values.containerPorts }}
70
69
- name : {{ .name }}
Original file line number Diff line number Diff line change @@ -230,10 +230,10 @@ config:
230
230
security :
231
231
staffDeviceVerification : false
232
232
paths :
233
- contentPath : " content/ "
233
+ contentPath : " /var/lib/ghost/content "
234
234
referrerPolicy : " origin-when-crossorigin"
235
235
logging :
236
- path : " content/logs/"
236
+ path : " /var/lib/ghost/ content/logs/"
237
237
useLocalTime : true
238
238
level : " info"
239
239
rotation :
You can’t perform that action at this time.
0 commit comments