Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
facorazza committed Oct 14, 2024
2 parents 94c9f16 + 0dc13d5 commit dff0eee
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
Binary file added assets/postgres.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions charts/manyfold/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: manyfold
description: "Manyfold A self-hosted digital asset manager for 3d print files."
description: "Manyfold is a self-hosted digital asset manager for 3d print files."
type: application
version: 0.1.1
version: 0.1.2
appVersion: "0.78.1"
icon: https://raw.githubusercontent.com/manyfold3d/manyfold/main/app/assets/images/roundel.svg
annotations:
Expand Down
16 changes: 11 additions & 5 deletions charts/manyfold/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
labels:
{{- include "manyfold.labels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.nodeSelector }}
Expand All @@ -37,8 +37,10 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.podSecurityContext }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Expand All @@ -61,10 +63,14 @@ spec:
- secretRef:
name: {{ .name }}
{{- end }}
{{- with .Values.securityContext }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.resources }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- toYaml . | nindent 12 }}
{{- end }}
volumeMounts:
- name: manyfold-config
mountPath: /config
Expand All @@ -88,6 +94,6 @@ spec:
- name: manyfold-libraries
persistentVolumeClaim:
claimName: manyfold-libraries
{{- with .Values.volumes }}
{{- with .Values.extraVolumes }}
{{- toYaml . | nindent 8 }}
{{- end }}
4 changes: 2 additions & 2 deletions charts/postgres/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ apiVersion: v2
name: postgres
description: "Postgres is an object-relational database system that provides reliability and data integrity."
type: application
version: 0.2.1
version: 0.2.2
appVersion: "16.4"
icon: https://wiki.postgres.org/images/3/30/postgres_logo.3colors.120x120.png
icon: https://raw.githubusercontent.com/self-hosters-by-night/helm-charts/refs/heads/main/assets/postgres.png
annotations:
artifacthub.io/category: database
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/postgres/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
{{- end }}
{{- with .Values.podSecurityContext }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
Expand Down

0 comments on commit dff0eee

Please sign in to comment.