Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
13
stable/traggo/1.0.0/CHANGELOG.md
Normal file
13
stable/traggo/1.0.0/CHANGELOG.md
Normal file
@@ -0,0 +1,13 @@
|
||||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [traggo-1.0.0](https://github.com/truecharts/charts/compare/traggo-0.0.2...traggo-1.0.0) (2022-12-08)
|
||||
|
||||
### Feat
|
||||
|
||||
- move to stable
|
||||
|
||||
|
||||
29
stable/traggo/1.0.0/Chart.yaml
Normal file
29
stable/traggo/1.0.0/Chart.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
apiVersion: v2
|
||||
appVersion: "0.2.3"
|
||||
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/incubator/traggo
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/traggo.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/truecharts/charts/tree/master/charts/incubator/traggo
|
||||
- https://github.com/traggo/server
|
||||
type: application
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- productivity
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
||||
0
stable/traggo/1.0.0/README.md
Normal file
0
stable/traggo/1.0.0/README.md
Normal file
9
stable/traggo/1.0.0/app-changelog.md
Normal file
9
stable/traggo/1.0.0/app-changelog.md
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
## [traggo-1.0.0](https://github.com/truecharts/charts/compare/traggo-0.0.2...traggo-1.0.0) (2022-12-08)
|
||||
|
||||
### Feat
|
||||
|
||||
- move to stable
|
||||
|
||||
|
||||
8
stable/traggo/1.0.0/app-readme.md
Normal file
8
stable/traggo/1.0.0/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/stable/traggo](https://truecharts.org/docs/charts/stable/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
stable/traggo/1.0.0/charts/common-11.0.4.tgz
Normal file
BIN
stable/traggo/1.0.0/charts/common-11.0.4.tgz
Normal file
Binary file not shown.
37
stable/traggo/1.0.0/ix_values.yaml
Normal file
37
stable/traggo/1.0.0/ix_values.yaml
Normal file
@@ -0,0 +1,37 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/traggo
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 0.2.3@sha256:a1922f9ceee1ab826ed55800a71494a1405cf698a176333094d4b85fc36d78f2
|
||||
|
||||
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
stable/traggo/1.0.0/questions.yaml
Normal file
1874
stable/traggo/1.0.0/questions.yaml
Normal file
File diff suppressed because it is too large
Load Diff
21
stable/traggo/1.0.0/templates/_secret.tpl
Normal file
21
stable/traggo/1.0.0/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
stable/traggo/1.0.0/templates/common.yaml
Normal file
8
stable/traggo/1.0.0/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
stable/traggo/1.0.0/values.yaml
Normal file
0
stable/traggo/1.0.0/values.yaml
Normal file
4
stable/traggo/item.yaml
Normal file
4
stable/traggo/item.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/traggo.png
|
||||
categories:
|
||||
- productivity
|
||||
|
||||
Reference in New Issue
Block a user