Merge pull request #7 from kyrbrbik/main

Add extra containers for postiz
This commit is contained in:
James Read
2025-01-02 08:52:31 +00:00
committed by GitHub
4 changed files with 12 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: v2
name: postiz-app
description: A Social Media Scheduling App
type: application
version: 1.0.4
version: 1.0.5
appVersion: "1.3.0"
maintainers:
- name: jonathan-irvin
@@ -51,6 +51,9 @@ spec:
name: {{ include "postiz.fullname" . }}-secrets
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- if .Values.extraContainers }}
{{- toYaml .Values.extraContainers | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
@@ -69,4 +72,4 @@ spec:
{{- else }}
- name: uploads-volume
emptyDir: {}
{{- end }}
{{- end }}
+4 -1
View File
@@ -11,5 +11,8 @@ spec:
targetPort: http
protocol: TCP
name: http
{{- if .Values.service.additionalPorts }}
{{- toYaml .Values.service.additionalPorts | nindent 4 }}
{{- end }}
selector:
{{- include "postiz.selectorLabels" . | nindent 4 }}
{{- include "postiz.selectorLabels" . | nindent 4 }}
+3
View File
@@ -23,6 +23,7 @@ securityContext: {}
service:
type: ClusterIP
port: 80
additionalPorts: []
ingress:
enabled: false # Disabled by default
@@ -44,6 +45,8 @@ ingress:
resources: {}
extraContainers: []
extraVolumes: []
extraVolumeMounts: []