Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
8
incubator/tagspaces/0.0.1/CHANGELOG.md
Normal file
8
incubator/tagspaces/0.0.1/CHANGELOG.md
Normal file
@@ -0,0 +1,8 @@
|
||||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [tagspaces-0.0.1]tagspaces-0.0.1 (2023-08-15)
|
||||
|
||||
28
incubator/tagspaces/0.0.1/Chart.yaml
Normal file
28
incubator/tagspaces/0.0.1/Chart.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
apiVersion: v2
|
||||
appVersion: "5.4.4"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 14.0.1
|
||||
deprecated: false
|
||||
description: TagSpaces is an offline, open source, document manager with tagging support.
|
||||
home: https://truecharts.org/charts/incubator/tagspaces
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/tagspaces.png
|
||||
keywords:
|
||||
- tagspaces
|
||||
- documents
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: tagspaces
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/tagspaces
|
||||
- https://github.com/tagspaces/tagspaces
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
truecharts.org/SCALE-support: "true"
|
||||
1
incubator/tagspaces/0.0.1/README.md
Normal file
1
incubator/tagspaces/0.0.1/README.md
Normal file
@@ -0,0 +1 @@
|
||||
# README
|
||||
4
incubator/tagspaces/0.0.1/app-changelog.md
Normal file
4
incubator/tagspaces/0.0.1/app-changelog.md
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
## [tagspaces-0.0.1]tagspaces-0.0.1 (2023-08-15)
|
||||
|
||||
8
incubator/tagspaces/0.0.1/app-readme.md
Normal file
8
incubator/tagspaces/0.0.1/app-readme.md
Normal file
@@ -0,0 +1,8 @@
|
||||
TagSpaces is an offline, open source, document manager with tagging support.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/tagspaces](https://truecharts.org/charts/incubator/tagspaces)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
37
incubator/tagspaces/0.0.1/ix_values.yaml
Normal file
37
incubator/tagspaces/0.0.1/ix_values.yaml
Normal file
@@ -0,0 +1,37 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/tagspaces-lite-web
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v5.4.4@sha256:82809b5e1a63c453410c204a6f15f383e33642fe20043fdcd24f4d43721d778d
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
readOnlyRootFilesystem: false
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: http
|
||||
targetPort: 80
|
||||
port: 5000
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
env:
|
||||
KEY:
|
||||
secretKeyRef:
|
||||
name: tagspaces-secret
|
||||
key: KEY
|
||||
|
||||
persistence:
|
||||
nginx:
|
||||
enabled: true
|
||||
type: emptyDir
|
||||
mountPath: "/var/cache/nginx"
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
||||
1896
incubator/tagspaces/0.0.1/questions.yaml
Normal file
1896
incubator/tagspaces/0.0.1/questions.yaml
Normal file
File diff suppressed because it is too large
Load Diff
14
incubator/tagspaces/0.0.1/templates/_secrets.tpl
Normal file
14
incubator/tagspaces/0.0.1/templates/_secrets.tpl
Normal file
@@ -0,0 +1,14 @@
|
||||
{{/* Define the secrets */}}
|
||||
{{- define "tagspaces.secret" -}}
|
||||
{{- $secretName := (printf "%s-tagspaces-secret" (include "tc.v1.common.lib.chart.names.fullname" $)) -}}
|
||||
|
||||
{{- $key := randAlphaNum 32 -}}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
|
||||
{{- $key = index .data "KEY" | b64dec -}}
|
||||
{{- end }}
|
||||
|
||||
tagspaces-secret:
|
||||
enabled: true
|
||||
data:
|
||||
KEY: {{ $key }}
|
||||
{{- end -}}
|
||||
11
incubator/tagspaces/0.0.1/templates/common.yaml
Normal file
11
incubator/tagspaces/0.0.1/templates/common.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{- $secret := include "tagspaces.secret" . | fromYaml -}}
|
||||
{{- if $secret -}}
|
||||
{{ $secret := (mustMergeOverwrite .Values.secret $secret) }}
|
||||
{{- $_ := set .Values "secret" $secret -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
||||
5
incubator/tagspaces/item.yaml
Normal file
5
incubator/tagspaces/item.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/tagspaces.png
|
||||
categories:
|
||||
- media
|
||||
|
||||
screenshots: []
|
||||
@@ -1,9 +0,0 @@
|
||||
|
||||
|
||||
## [webtop-6.0.36](https://github.com/truecharts/charts/compare/webtop-6.0.35...webtop-6.0.36) (2023-08-15)
|
||||
|
||||
### Chore
|
||||
|
||||
- update webtop ([#11565](https://github.com/truecharts/charts/issues/11565))
|
||||
|
||||
|
||||
@@ -4,6 +4,15 @@
|
||||
|
||||
|
||||
|
||||
## [webtop-6.0.37](https://github.com/truecharts/charts/compare/webtop-6.0.36...webtop-6.0.37) (2023-08-15)
|
||||
|
||||
### Chore
|
||||
|
||||
- update webtop ([#11566](https://github.com/truecharts/charts/issues/11566))
|
||||
|
||||
|
||||
|
||||
|
||||
## [webtop-6.0.36](https://github.com/truecharts/charts/compare/webtop-6.0.35...webtop-6.0.36) (2023-08-15)
|
||||
|
||||
### Chore
|
||||
@@ -88,12 +97,3 @@
|
||||
## [webtop-6.0.27](https://github.com/truecharts/charts/compare/webtop-6.0.23...webtop-6.0.27) (2023-08-09)
|
||||
|
||||
### Chore
|
||||
|
||||
- update webtop ([#11377](https://github.com/truecharts/charts/issues/11377))
|
||||
- update container image tccr.io/truecharts/webtop-ubuntu-mate to latest ([#11374](https://github.com/truecharts/charts/issues/11374))
|
||||
- update webtop ([#11372](https://github.com/truecharts/charts/issues/11372))
|
||||
- update container image tccr.io/truecharts/webtop-ubuntu-i3 to latest ([#11370](https://github.com/truecharts/charts/issues/11370))
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ sources:
|
||||
- https://github.com/orgs/linuxserver/packages/container/package/webtop
|
||||
- https://github.com/linuxserver/docker-webtop#readme
|
||||
type: application
|
||||
version: 6.0.36
|
||||
version: 6.0.37
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- Tools-Utilities
|
||||
9
stable/webtop/6.0.37/app-changelog.md
Normal file
9
stable/webtop/6.0.37/app-changelog.md
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
## [webtop-6.0.37](https://github.com/truecharts/charts/compare/webtop-6.0.36...webtop-6.0.37) (2023-08-15)
|
||||
|
||||
### Chore
|
||||
|
||||
- update webtop ([#11566](https://github.com/truecharts/charts/issues/11566))
|
||||
|
||||
|
||||
BIN
stable/webtop/6.0.37/charts/common-14.0.1.tgz
Normal file
BIN
stable/webtop/6.0.37/charts/common-14.0.1.tgz
Normal file
Binary file not shown.
@@ -24,7 +24,7 @@ ubuntuKDEImage:
|
||||
pullPolicy: Always
|
||||
fedoraKDEImage:
|
||||
repository: tccr.io/truecharts/webtop-fedora-kde
|
||||
tag: latest@sha256:797fe59a9a8d28c73640da39ef3441a5e81ee4bd8132ca6b32bdf07b96cade9f
|
||||
tag: latest@sha256:c89146296ba6d3d89a6a84ecd487bbf5949d456221e5fb5d4fde3d2cb8ecb0f1
|
||||
pullPolicy: Always
|
||||
archKDEImage:
|
||||
repository: tccr.io/truecharts/webtop-arch-kde
|
||||
@@ -88,7 +88,7 @@ ubuntuICEWMImage:
|
||||
pullPolicy: Always
|
||||
fedoraICEWMImage:
|
||||
repository: tccr.io/truecharts/webtop-fedora-icewm
|
||||
tag: latest@sha256:19f629da77f722a2777375be4609aefa37979f03e22135c20a13b799839b5500
|
||||
tag: latest@sha256:f6894408ca236893b2d1887f4ed9d0d58d5485d3f4d805b2025b038472c029c5
|
||||
pullPolicy: Always
|
||||
archICEWMImage:
|
||||
repository: tccr.io/truecharts/webtop-arch-icewm
|
||||
1
stable/webtop/6.0.37/templates/NOTES.txt
Normal file
1
stable/webtop/6.0.37/templates/NOTES.txt
Normal file
@@ -0,0 +1 @@
|
||||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
||||
0
stable/webtop/6.0.37/values.yaml
Normal file
0
stable/webtop/6.0.37/values.yaml
Normal file
Reference in New Issue
Block a user