From 80f4cf1e3f6db895fc22032e7e1e5d82e44a6580 Mon Sep 17 00:00:00 2001 From: Taiga Date: Sun, 20 Oct 2024 22:07:06 +0400 Subject: [PATCH 1/2] Add `ServiceAccount` template --- charts/postiz/templates/postiz-serviceaccount.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 charts/postiz/templates/postiz-serviceaccount.yaml diff --git a/charts/postiz/templates/postiz-serviceaccount.yaml b/charts/postiz/templates/postiz-serviceaccount.yaml new file mode 100644 index 0000000..7d5f34f --- /dev/null +++ b/charts/postiz/templates/postiz-serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create }} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "postiz.serviceAccountName" . }} + labels: + {{- include "postiz.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} From 36c0e0a7333b0d50e62bf34ee0e7b1e6bea3e15a Mon Sep 17 00:00:00 2001 From: Taiga Date: Sun, 20 Oct 2024 22:12:14 +0400 Subject: [PATCH 2/2] Bump Helm chart --- charts/postiz/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/postiz/Chart.yaml b/charts/postiz/Chart.yaml index 3c1d554..41ba4fa 100644 --- a/charts/postiz/Chart.yaml +++ b/charts/postiz/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: postiz-app description: A Social Media Scheduling App type: application -version: 1.0.2 +version: 1.0.3 appVersion: "1.3.0" maintainers: - name: jonathan-irvin