Publish new changes in catalog

This commit is contained in:
sonicaj
2023-11-09 07:52:49 +00:00
parent 023efa307b
commit 31f3edbcca
261 changed files with 241 additions and 589 deletions

View File

@@ -1,52 +0,0 @@
{{- define "firefly.persistence" -}}
persistence:
uploads:
enabled: true
type: {{ .Values.fireflyStorage.uploads.type }}
datasetName: {{ .Values.fireflyStorage.uploads.datasetName | default "" }}
hostPath: {{ .Values.fireflyStorage.uploads.hostPath | default "" }}
targetSelector:
firefly:
firefly:
mountPath: /var/www/html/storage/upload
tmp:
enabled: true
type: emptyDir
targetSelector:
firefly:
firefly:
mountPath: /tmp
firefly-importer:
firefly-importer:
mountPath: /tmp
# Postgres
postgresdata:
enabled: true
type: {{ .Values.fireflyStorage.pgData.type }}
datasetName: {{ .Values.fireflyStorage.pgData.datasetName | default "" }}
hostPath: {{ .Values.fireflyStorage.pgData.hostPath | default "" }}
targetSelector:
# Postgres pod
postgres:
# Postgres container
postgres:
mountPath: /var/lib/postgresql/data
# Permissions container
permissions:
mountPath: /mnt/directories/postgres_data
postgresbackup:
enabled: true
type: {{ .Values.fireflyStorage.pgBackup.type }}
datasetName: {{ .Values.fireflyStorage.pgBackup.datasetName | default "" }}
hostPath: {{ .Values.fireflyStorage.pgBackup.hostPath | default "" }}
targetSelector:
# Postgres backup pod
postgresbackup:
# Postgres backup container
postgresbackup:
mountPath: /postgres_backup
# Permissions container
permissions:
mountPath: /mnt/directories/postgres_backup
{{- end -}}

View File

@@ -3,7 +3,7 @@ description: Firefly III is a personal finances manager
annotations:
title: Firefly III
type: application
version: 1.0.10
version: 1.0.11
apiVersion: v2
appVersion: 6.0.30
kubeVersion: '>=1.16.0-0'

View File

@@ -0,0 +1,27 @@
{{- define "firefly.persistence" -}}
persistence:
uploads:
enabled: true
type: {{ .Values.fireflyStorage.uploads.type }}
datasetName: {{ .Values.fireflyStorage.uploads.datasetName | default "" }}
hostPath: {{ .Values.fireflyStorage.uploads.hostPath | default "" }}
targetSelector:
firefly:
firefly:
mountPath: /var/www/html/storage/upload
tmp:
enabled: true
type: emptyDir
targetSelector:
firefly:
firefly:
mountPath: /tmp
firefly-importer:
firefly-importer:
mountPath: /tmp
{{- include "ix.v1.common.app.postgresPersistence"
(dict "pgData" .Values.fireflyStorage.pgData
"pgBackup" .Values.fireflyStorage.pgBackup
) | nindent 2 }}
{{- end -}}

View File

@@ -36,15 +36,6 @@ service:
port: 6379
targetPort: 6379
targetSelector: redis
# Postgres
postgres:
enabled: true
type: ClusterIP
targetSelector: postgres
ports:
postgres:
enabled: true
primary: true
port: 5432
targetSelector: postgres
{{- include "ix.v1.common.app.postgresService" $ | nindent 2 }}
{{- end -}}

View File

@@ -1,6 +0,0 @@
dependencies:
- name: common
repository: file://../../../common
version: 1.2.0
digest: sha256:a87a6988cedfc3f8a90eb308dffaaeaa1cbd0cad31c20e15b1147084360b9ec1
generated: "2023-10-31T13:18:17.362686549+02:00"

View File

@@ -0,0 +1,6 @@
dependencies:
- name: common
repository: file://../../../common
version: 1.2.1
digest: sha256:d695592ea5213fe64453171205ca326015d02df3888a7858becc0c733b0de4c7
generated: "2023-11-06T19:40:33.486614163+02:00"

View File

@@ -3,7 +3,7 @@ description: FreshRSS is a free, self-hostable news aggregator
annotations:
title: FreshRSS
type: application
version: 1.0.1
version: 1.0.2
apiVersion: v2
appVersion: 1.22.1
kubeVersion: '>=1.16.0-0'
@@ -14,7 +14,7 @@ maintainers:
dependencies:
- name: common
repository: file://../../../common
version: 1.2.0
version: 1.2.1
home: https://freshrss.org/
icon: https://media.sys.truenas.net/apps/freshrss/icons/icon.png
sources:

Binary file not shown.

View File

@@ -63,35 +63,9 @@ persistence:
mountPath: {{ $storage.mountPath }}
{{- end }}
{{/* Database */}}
postgresdata:
enabled: true
type: {{ .Values.freshrssStorage.pgData.type }}
datasetName: {{ .Values.freshrssStorage.pgData.datasetName | default "" }}
hostPath: {{ .Values.freshrssStorage.pgData.hostPath | default "" }}
targetSelector:
# Postgres pod
postgres:
# Postgres container
postgres:
mountPath: /var/lib/postgresql/data
# Postgres - Permissions container
# Different than the 01-permissions
permissions:
mountPath: /mnt/directories/postgres_data
postgresbackup:
enabled: true
type: {{ .Values.freshrssStorage.pgBackup.type }}
datasetName: {{ .Values.freshrssStorage.pgBackup.datasetName | default "" }}
hostPath: {{ .Values.freshrssStorage.pgBackup.hostPath | default "" }}
targetSelector:
# Postgres backup pod
postgresbackup:
# Postgres backup container
postgresbackup:
mountPath: /postgres_backup
# Postgres - Permissions container
# Different than the 01-permissions
permissions:
mountPath: /mnt/directories/postgres_backup
{{- include "ix.v1.common.app.postgresPersistence"
(dict "pgData" .Values.freshrssStorage.pgData
"pgBackup" .Values.freshrssStorage.pgBackup
) | nindent 2 }}
{{- end -}}

View File

@@ -12,17 +12,6 @@ service:
port: {{ .Values.freshrssNetwork.webPort }}
nodePort: {{ .Values.freshrssNetwork.webPort }}
targetSelector: freshrss
{{- include "ix.v1.common.app.postgresService" $ | nindent 2 }}
{{/* Database */}}
postgres:
enabled: true
type: ClusterIP
targetSelector: postgres
ports:
postgres:
enabled: true
primary: true
port: 5432
targetPort: 5432
targetSelector: postgres
{{- end -}}

View File

@@ -1,6 +0,0 @@
dependencies:
- name: common
repository: file://../../../common
version: 1.1.1
digest: sha256:a7dbe3e4d42dbcd4325776e5e01a1d630c7f185f79e7ebf22b1b9cc80f56eed7
generated: "2023-09-09T13:56:41.74669531+03:00"

View File

@@ -1,50 +0,0 @@
{{- define "postgres.workload" -}}
workload:
{{- include "ix.v1.common.app.postgres" (dict "secretName" "postgres-creds"
"resources" .Values.resources
"ixChartContext" .Values.ixChartContext) | nindent 2 }}
{{/* Service */}}
service:
postgres:
enabled: true
type: ClusterIP
targetSelector: postgres
ports:
postgres:
enabled: true
primary: true
port: 5432
targetSelector: postgres
{{/* Persistence */}}
persistence:
postgresdata:
enabled: true
type: {{ .Values.giteaStorage.pgData.type }}
datasetName: {{ .Values.giteaStorage.pgData.datasetName | default "" }}
hostPath: {{ .Values.giteaStorage.pgData.hostPath | default "" }}
targetSelector:
# Postgres pod
postgres:
# Postgres container
postgres:
mountPath: /var/lib/postgresql/data
# Permissions container
permissions:
mountPath: /mnt/directories/postgres_data
postgresbackup:
enabled: true
type: {{ .Values.giteaStorage.pgBackup.type }}
datasetName: {{ .Values.giteaStorage.pgBackup.datasetName | default "" }}
hostPath: {{ .Values.giteaStorage.pgBackup.hostPath | default "" }}
targetSelector:
# Postgres backup pod
postgresbackup:
# Postgres backup container
postgresbackup:
mountPath: /postgres_backup
# Permissions container
permissions:
mountPath: /mnt/directories/postgres_backup
{{- end -}}

View File

@@ -0,0 +1,6 @@
dependencies:
- name: common
repository: file://../../../common
version: 1.2.1
digest: sha256:d695592ea5213fe64453171205ca326015d02df3888a7858becc0c733b0de4c7
generated: "2023-11-06T19:43:10.763796701+02:00"

View File

@@ -3,7 +3,7 @@ description: Gitea - Git with a cup of tea
annotations:
title: Gitea
type: application
version: 1.0.21
version: 1.0.22
apiVersion: v2
appVersion: 1.20.5
kubeVersion: '>=1.16.0-0'
@@ -14,7 +14,7 @@ maintainers:
dependencies:
- name: common
repository: file://../../../common
version: 1.1.1
version: 1.2.1
home: https://gitea.io/en-us
icon: https://media.sys.truenas.net/apps/gitea/icons/icon.svg
sources:

Binary file not shown.

View File

@@ -0,0 +1,16 @@
{{- define "postgres.workload" -}}
workload:
{{- include "ix.v1.common.app.postgres" (dict "secretName" "postgres-creds"
"resources" .Values.resources
"ixChartContext" .Values.ixChartContext) | nindent 2 }}
service:
{{- include "ix.v1.common.app.postgresService" $ | nindent 2 }}
{{/* Persistence */}}
persistence:
{{- include "ix.v1.common.app.postgresPersistence"
(dict "pgData" .Values.giteaStorage.pgData
"pgBackup" .Values.giteaStorage.pgBackup
) | nindent 2 }}
{{- end -}}

View File

@@ -1,6 +0,0 @@
dependencies:
- name: common
repository: file://../../../common
version: 1.2.0
digest: sha256:a87a6988cedfc3f8a90eb308dffaaeaa1cbd0cad31c20e15b1147084360b9ec1
generated: "2023-11-02T12:20:39.027755478+02:00"

View File

@@ -1,31 +0,0 @@
{{- define "joplin.persistence" -}}
persistence:
postgresdata:
enabled: true
type: {{ .Values.joplinStorage.pgData.type }}
datasetName: {{ .Values.joplinStorage.pgData.datasetName | default "" }}
hostPath: {{ .Values.joplinStorage.pgData.hostPath | default "" }}
targetSelector:
# Postgres pod
postgres:
# Postgres container
postgres:
mountPath: /var/lib/postgresql/data
# Postgres - Permissions container
permissions:
mountPath: /mnt/directories/postgres_data
postgresbackup:
enabled: true
type: {{ .Values.joplinStorage.pgBackup.type }}
datasetName: {{ .Values.joplinStorage.pgBackup.datasetName | default "" }}
hostPath: {{ .Values.joplinStorage.pgBackup.hostPath | default "" }}
targetSelector:
# Postgres backup pod
postgresbackup:
# Postgres backup container
postgresbackup:
mountPath: /postgres_backup
# Postgres - Permissions container
permissions:
mountPath: /mnt/directories/postgres_backup
{{- end -}}

View File

@@ -0,0 +1,6 @@
dependencies:
- name: common
repository: file://../../../common
version: 1.2.1
digest: sha256:d695592ea5213fe64453171205ca326015d02df3888a7858becc0c733b0de4c7
generated: "2023-11-06T19:46:30.510415405+02:00"

View File

@@ -4,7 +4,7 @@ description: Joplin is an open source note-taking app. Capture your thoughts and
annotations:
title: Joplin
type: application
version: 1.0.5
version: 1.0.6
apiVersion: v2
appVersion: 2.13.3
kubeVersion: '>=1.16.0-0'
@@ -15,7 +15,7 @@ maintainers:
dependencies:
- name: common
repository: file://../../../common
version: 1.2.0
version: 1.2.1
home: https://joplinapp.org/
icon: https://media.sys.truenas.net/apps/joplin/icons/icon.png
sources:

Binary file not shown.

View File

@@ -0,0 +1,7 @@
{{- define "joplin.persistence" -}}
persistence:
{{- include "ix.v1.common.app.postgresPersistence"
(dict "pgData" .Values.joplinStorage.pgData
"pgBackup" .Values.joplinStorage.pgBackup
) | nindent 2 }}
{{- end -}}

View File

@@ -12,15 +12,6 @@ service:
port: {{ .Values.joplinNetwork.webPort }}
nodePort: {{ .Values.joplinNetwork.webPort }}
targetSelector: joplin
postgres:
enabled: true
type: ClusterIP
targetSelector: postgres
ports:
postgres:
enabled: true
primary: true
port: 5432
targetPort: 5432
targetSelector: postgres
{{- include "ix.v1.common.app.postgresService" $ | nindent 2 }}
{{- end -}}

View File

@@ -3,7 +3,7 @@ description: Linkding is a bookmark manager that you can host yourself.
annotations:
title: Linkding
type: application
version: 1.1.3
version: 1.1.4
apiVersion: v2
appVersion: 1.22.3
kubeVersion: '>=1.16.0-0'

View File

@@ -56,35 +56,8 @@ persistence:
mountPath: /mnt/directories{{ $storage.mountPath }}
{{- end }}
{{/* Database */}}
postgresdata:
enabled: true
type: {{ .Values.linkdingStorage.pgData.type }}
datasetName: {{ .Values.linkdingStorage.pgData.datasetName | default "" }}
hostPath: {{ .Values.linkdingStorage.pgData.hostPath | default "" }}
targetSelector:
# Postgres pod
postgres:
# Postgres container
postgres:
mountPath: /var/lib/postgresql/data
# Postgres - Permissions container
# Different than the 01-permissions
permissions:
mountPath: /mnt/directories/postgres_data
postgresbackup:
enabled: true
type: {{ .Values.linkdingStorage.pgBackup.type }}
datasetName: {{ .Values.linkdingStorage.pgBackup.datasetName | default "" }}
hostPath: {{ .Values.linkdingStorage.pgBackup.hostPath | default "" }}
targetSelector:
# Postgres backup pod
postgresbackup:
# Postgres backup container
postgresbackup:
mountPath: /postgres_backup
# Postgres - Permissions container
# Different than the 01-permissions
permissions:
mountPath: /mnt/directories/postgres_backup
{{- include "ix.v1.common.app.postgresPersistence"
(dict "pgData" .Values.linkdingStorage.pgData
"pgBackup" .Values.linkdingStorage.pgBackup
) | nindent 2 }}
{{- end -}}

Some files were not shown because too many files have changed in this diff Show More