Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
13
incubator/traggo/0.0.1/CHANGELOG.md
Normal file
13
incubator/traggo/0.0.1/CHANGELOG.md
Normal file
@@ -0,0 +1,13 @@
|
||||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [traggo-0.0.1]traggo-0.0.1 (2022-12-07)
|
||||
|
||||
### Feat
|
||||
|
||||
- add traggo ([#5187](https://github.com/truecharts/charts/issues/5187))
|
||||
|
||||
|
||||
28
incubator/traggo/0.0.1/Chart.yaml
Normal file
28
incubator/traggo/0.0.1/Chart.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
apiVersion: v2
|
||||
appVersion: "0.20.2297"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 11.0.4
|
||||
deprecated: false
|
||||
description: Traggo is a tag-based time tracking tool. In Traggo there are no tasks, only tagged time spans.
|
||||
home: https://truecharts.org/docs/charts/stable/jackett
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/jackett.png
|
||||
keywords:
|
||||
- time-tracking
|
||||
- tag
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: traggo
|
||||
sources:
|
||||
- https://github.com/traggo/server
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- productivity
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
||||
0
incubator/traggo/0.0.1/README.md
Normal file
0
incubator/traggo/0.0.1/README.md
Normal file
9
incubator/traggo/0.0.1/app-changelog.md
Normal file
9
incubator/traggo/0.0.1/app-changelog.md
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
## [traggo-0.0.1]traggo-0.0.1 (2022-12-07)
|
||||
|
||||
### Feat
|
||||
|
||||
- add traggo ([#5187](https://github.com/truecharts/charts/issues/5187))
|
||||
|
||||
|
||||
8
incubator/traggo/0.0.1/app-readme.md
Normal file
8
incubator/traggo/0.0.1/app-readme.md
Normal file
@@ -0,0 +1,8 @@
|
||||
Traggo is a tag-based time tracking tool. In Traggo there are no tasks, only tagged time spans.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/docs/charts/incubator/traggo](https://truecharts.org/docs/charts/incubator/traggo)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/docs/about/sponsor) or contributing back to the project any way you can!
|
||||
BIN
incubator/traggo/0.0.1/charts/common-11.0.4.tgz
Normal file
BIN
incubator/traggo/0.0.1/charts/common-11.0.4.tgz
Normal file
Binary file not shown.
37
incubator/traggo/0.0.1/ix_values.yaml
Normal file
37
incubator/traggo/0.0.1/ix_values.yaml
Normal file
@@ -0,0 +1,37 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/traggo
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 0.2.3@sha256:ae5f33424ebf5b87716921fdc7e7a46d96c22dc9e6c03a65c1bf4ef4fb0b11f9
|
||||
|
||||
traggo:
|
||||
username: admin
|
||||
password: admin
|
||||
pass_strength: 10
|
||||
log_level: info
|
||||
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: '{{ include "tc.common.names.fullname" . }}-secret'
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: HTTP
|
||||
port: 12117
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
type: HTTP
|
||||
readiness:
|
||||
type: HTTP
|
||||
startup:
|
||||
type: HTTP
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /opt/traggo/data
|
||||
|
||||
portal:
|
||||
enabled: true
|
||||
1874
incubator/traggo/0.0.1/questions.yaml
Normal file
1874
incubator/traggo/0.0.1/questions.yaml
Normal file
File diff suppressed because it is too large
Load Diff
21
incubator/traggo/0.0.1/templates/_secret.tpl
Normal file
21
incubator/traggo/0.0.1/templates/_secret.tpl
Normal file
@@ -0,0 +1,21 @@
|
||||
{{/* Define the secret */}}
|
||||
{{- define "traggo.secret" -}}
|
||||
|
||||
{{- $secretName := printf "%s-secret" (include "tc.common.names.fullname" .) }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
type: Opaque
|
||||
metadata:
|
||||
name: {{ $secretName }}
|
||||
labels:
|
||||
{{- include "tc.common.labels" . | nindent 4 }}
|
||||
stringData:
|
||||
TRAGGO_DATABASE_DIALECT: sqlite3
|
||||
TRAGGO_DATABASE_CONNECTION: /opt/traggo/data/traggo.db
|
||||
TRAGGO_PORT: {{ .Values.service.main.ports.main.port | quote }}
|
||||
TRAGGO_PASS_STRENGTH: {{ .Values.traggo.pass_strength | quote }}
|
||||
TRAGGO_DEFAULT_USER_NAME: {{ .Values.traggo.username }}
|
||||
TRAGGO_DEFAULT_USER_PASS: {{ .Values.traggo.password }}
|
||||
TRAGGO_LOG_LEVEL: {{ .Values.traggo.log_level }}
|
||||
{{- end }}
|
||||
8
incubator/traggo/0.0.1/templates/common.yaml
Normal file
8
incubator/traggo/0.0.1/templates/common.yaml
Normal file
@@ -0,0 +1,8 @@
|
||||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.common.loader.init" . }}
|
||||
|
||||
{{/* Render secret */}}
|
||||
{{- include "traggo.secret" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.apply" . }}
|
||||
0
incubator/traggo/0.0.1/values.yaml
Normal file
0
incubator/traggo/0.0.1/values.yaml
Normal file
4
incubator/traggo/item.yaml
Normal file
4
incubator/traggo/item.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/jackett.png
|
||||
categories:
|
||||
- productivity
|
||||
|
||||
Reference in New Issue
Block a user