Skip to content
This repository was archived by the owner on Mar 5, 2026. It is now read-only.

Commit 8864216

Browse files
committed
only pass in skip verification env var to activitypub if it's set to tru
1 parent 748c356 commit 8864216

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

charts/ghost/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 1.9.0
21+
version: 1.9.1
2222

2323
# renovate: image=docker.io/ghost
2424
appVersion: "6.0.10"

charts/ghost/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ghost
22

3-
![Version: 1.9.0](https://img.shields.io/badge/Version-1.9.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.0.10](https://img.shields.io/badge/AppVersion-6.0.10-informational?style=flat-square)
3+
![Version: 1.9.1](https://img.shields.io/badge/Version-1.9.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.0.10](https://img.shields.io/badge/AppVersion-6.0.10-informational?style=flat-square)
44

55
A Helm chart for deploying Ghost on Kubernetes
66

charts/ghost/templates/deployment-activity-pub.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,10 @@ spec:
9595
- name: ALLOW_PRIVATE_ADDRESS
9696
value: {{ .Values.activity_pub.allowPrivateAddress | quote }}
9797

98+
{{- with .Values.activity_pub.skipSignatureVerfication }}
9899
- name: SKIP_SIGNATURE_VERIFICATION
99-
value: {{ .Values.activity_pub.skipSignatureVerfication | quote }}
100+
value: {{ . | quote }}
101+
{{ end }}
100102

101103
- name: USE_MQ
102104
value: {{ .Values.activity_pub.useMq | quote }}

0 commit comments

Comments
 (0)