Skip to content

Commit 5445a7e

Browse files
authored
[bitnami/ghost: Use merge helper]: (#19041)
1 parent 8d4cc38 commit 5445a7e

File tree

9 files changed

+34
-34
lines changed

9 files changed

+34
-34
lines changed

bitnami/ghost/Chart.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
dependencies:
22
- name: mysql
33
repository: oci://registry-1.docker.io/bitnamicharts
4-
version: 9.12.0
4+
version: 9.12.1
55
- name: common
66
repository: oci://registry-1.docker.io/bitnamicharts
7-
version: 2.9.0
8-
digest: sha256:62004d603457e25f04c0379998ad9dd8241e44833c36e8a76787d7f87e959f76
9-
generated: "2023-08-22T18:21:31.505057006Z"
7+
version: 2.10.0
8+
digest: sha256:d0d754d0d48dcdc349422901b93b31cfad23167e0b58d05c32ebd84f219744f8
9+
generated: "2023-09-05T11:32:30.94883+02:00"

bitnami/ghost/Chart.yaml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,32 @@ annotations:
1212
apiVersion: v2
1313
appVersion: 5.60.0
1414
dependencies:
15-
- condition: mysql.enabled
16-
name: mysql
17-
repository: oci://registry-1.docker.io/bitnamicharts
18-
tags:
19-
- ghost-database
20-
version: 9.x.x
21-
- name: common
22-
repository: oci://registry-1.docker.io/bitnamicharts
23-
tags:
24-
- bitnami-common
25-
version: 2.x.x
15+
- condition: mysql.enabled
16+
name: mysql
17+
repository: oci://registry-1.docker.io/bitnamicharts
18+
tags:
19+
- ghost-database
20+
version: 9.x.x
21+
- name: common
22+
repository: oci://registry-1.docker.io/bitnamicharts
23+
tags:
24+
- bitnami-common
25+
version: 2.x.x
2626
description: Ghost is an open source publishing platform designed to create blogs, magazines, and news sites. It includes a simple markdown editor with preview, theming, and SEO built-in to simplify editing.
2727
home: https://bitnami.com
2828
icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png
2929
keywords:
30-
- ghost
31-
- blog
32-
- http
33-
- web
34-
- application
35-
- nodejs
36-
- javascript
30+
- ghost
31+
- blog
32+
- http
33+
- web
34+
- application
35+
- nodejs
36+
- javascript
3737
maintainers:
38-
- name: VMware, Inc.
39-
url: https://github.com/bitnami/charts
38+
- name: VMware, Inc.
39+
url: https://github.com/bitnami/charts
4040
name: ghost
4141
sources:
42-
- https://github.com/bitnami/charts/tree/main/bitnami/ghost
43-
version: 19.5.1
42+
- https://github.com/bitnami/charts/tree/main/bitnami/ghost
43+
version: 19.5.2

bitnami/ghost/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ metadata:
1515
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.service.annotations "context" $) | nindent 4 }}
1616
{{- end }}
1717
spec:
18-
{{- $podLabels := merge .Values.podLabels .Values.commonLabels }}
18+
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
1919
selector:
2020
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
2121
replicas: {{ .Values.replicaCount }}

bitnami/ghost/templates/ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
kubernetes.io/tls-acme: "true"
1818
{{- end }}
1919
{{- if or .Values.ingress.annotations .Values.commonAnnotations }}
20-
{{- $annotations := merge .Values.ingress.annotations .Values.commonAnnotations }}
20+
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.ingress.annotations .Values.commonAnnotations ) "context" . ) }}
2121
{{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
2222
{{- end }}
2323
{{- end }}

bitnami/ghost/templates/networkpolicy-backend-ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ metadata:
1414
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" $) | nindent 4 }}
1515
{{- end }}
1616
spec:
17-
{{- $podLabels := merge .Values.podLabels .Values.commonLabels }}
17+
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
1818
podSelector:
1919
matchLabels:
2020
{{- if .Values.networkPolicy.ingressRules.customBackendSelector }}

bitnami/ghost/templates/networkpolicy-ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ metadata:
1414
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" $) | nindent 4 }}
1515
{{- end }}
1616
spec:
17-
{{- $podLabels := merge .Values.podLabels .Values.commonLabels }}
17+
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
1818
podSelector:
1919
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
2020
ingress:

bitnami/ghost/templates/pvc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
1313
app.kubernetes.io/component: ghost
1414
{{- if or .Values.persistence.annotations .Values.commonAnnotations }}
15-
{{- $annotations := merge .Values.persistence.annotations .Values.commonAnnotations }}
15+
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.persistence.annotations .Values.commonAnnotations ) "context" . ) }}
1616
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
1717
{{- end }}
1818
spec:

bitnami/ghost/templates/service-account.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
1313
app.kubernetes.io/component: ghost
1414
{{- if or .Values.serviceAccount.annotations .Values.commonAnnotations }}
15-
{{- $annotations := merge .Values.serviceAccount.annotations .Values.commonAnnotations }}
15+
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.serviceAccount.annotations .Values.commonAnnotations ) "context" . ) }}
1616
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
1717
{{- end }}
1818
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}

bitnami/ghost/templates/svc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
1212
app.kubernetes.io/component: ghost
1313
{{- if or .Values.service.annotations .Values.commonAnnotations }}
14-
{{- $annotations := merge .Values.service.annotations .Values.commonAnnotations }}
14+
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.service.annotations .Values.commonAnnotations ) "context" . ) }}
1515
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
1616
{{- end }}
1717
spec:
@@ -59,6 +59,6 @@ spec:
5959
{{- if .Values.service.extraPorts }}
6060
{{- include "common.tplvalues.render" (dict "value" .Values.service.extraPorts "context" $) | nindent 4 }}
6161
{{- end }}
62-
{{- $podLabels := merge .Values.podLabels .Values.commonLabels }}
62+
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
6363
selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }}
6464
app.kubernetes.io/component: ghost

0 commit comments

Comments
 (0)