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 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 }}