feat(apps): move some apps to stable (#2504)
* feat(apps): move apps to stable * move to stable * move to stable * remove jwt and let it auto generate * remove jwt * move to stable * move to stabel * move to stable * move to stable * move to stable and upate image refs * move to stable * fix appsmith * typo
This commit is contained in:
@@ -25,7 +25,7 @@ maintainers:
|
||||
name: appsmith
|
||||
sources:
|
||||
- https://github.com/appsmithorg/appsmith
|
||||
version: 0.0.1
|
||||
version: 0.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- productivity
|
||||
|
||||
@@ -46,6 +46,7 @@ envValueFrom:
|
||||
redis:
|
||||
enabled: true
|
||||
existingSecret: "rediscreds"
|
||||
redisUsername: appsmith
|
||||
|
||||
# mongodb:
|
||||
# enabled: true
|
||||
|
||||
@@ -144,19 +144,19 @@ questions:
|
||||
description: "Disables the default splash screen(initial welcome animation) and matrix screensaver will disable."
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
default: false
|
||||
- variable: NC_INVITE_ONLY_SIGNUP
|
||||
label: "Invite Only Signup"
|
||||
description: "Allow users to signup only via invite url, value should be any non-empty string."
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
default: false
|
||||
- variable: NC_DISABLE_CACHE
|
||||
label: "Disable Cache"
|
||||
description: "If it is set to true, then meta data will not be cached."
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
default: false
|
||||
- variable: NC_DISABLE_TELE
|
||||
label: "Disable Telemetry"
|
||||
description: "Disable telemetry."
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
{{/* Define the secrets */}}
|
||||
{{- define "nocodb.secrets" -}}
|
||||
---
|
||||
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
type: Opaque
|
||||
metadata:
|
||||
name: nocodb-secrets
|
||||
{{- $nocodbprevious := lookup "v1" "Secret" .Release.Namespace "nocodb-secrets" }}
|
||||
{{- $auth_jwt_token := "" }}
|
||||
data:
|
||||
{{- if $nocodbprevious}}
|
||||
NC_AUTH_JWT_SECRET: {{ index $nocodbprevious.data "NC_AUTH_JWT_SECRET" }}
|
||||
{{- else }}
|
||||
{{- $auth_jwt_token := randAlphaNum 32 }}
|
||||
NC_AUTH_JWT_SECRET: {{ $auth_jwt_token | b64enc }}
|
||||
{{- end }}
|
||||
|
||||
{{- end -}}
|
||||
@@ -4,8 +4,5 @@
|
||||
{{/* Render configmap for nocodb */}}
|
||||
{{- include "nocodb.configmap" . }}
|
||||
|
||||
{{/* Render secrets for nocodb */}}
|
||||
{{- include "nocodb.secrets" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "common.postSetup" . }}
|
||||
|
||||
@@ -24,10 +24,6 @@ envValueFrom:
|
||||
secretKeyRef:
|
||||
name: rediscreds
|
||||
key: url
|
||||
NC_AUTH_JWT_SECRET:
|
||||
secretKeyRef:
|
||||
name: nocodb-secrets
|
||||
key: NC_AUTH_JWT_SECRET
|
||||
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
{{/* Define the secrets */}}
|
||||
{{- define "vikunja.secrets" -}}
|
||||
---
|
||||
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
type: Opaque
|
||||
metadata:
|
||||
name: vikunja-secrets
|
||||
{{- $vikunjaprevious := lookup "v1" "Secret" .Release.Namespace "vikunja-secrets" }}
|
||||
{{- $jwt_secret := "" }}
|
||||
data:
|
||||
{{- if $vikunjaprevious}}
|
||||
VIKUNJA_SERVICE_JWT_SECRET: {{ index $vikunjaprevious.data "VIKUNJA_SERVICE_JWT_SECRET" }}
|
||||
{{- else }}
|
||||
{{- $jwt_secret := randAlphaNum 32 }}
|
||||
VIKUNJA_SERVICE_JWT_SECRET: {{ $jwt_secret | b64enc }}
|
||||
{{- end }}
|
||||
|
||||
{{- end -}}
|
||||
@@ -1,8 +1 @@
|
||||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "common.setup" . }}
|
||||
|
||||
{{/* Render secrets for vikunja */}}
|
||||
{{- include "vikunja.secrets" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "common.postSetup" . }}
|
||||
{{- include "common.all" . }}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
image:
|
||||
repository: vikunja/api
|
||||
tag: 0.18.1@sha256:78be185acc4fc41b860d4145ab1bc3ae175c7e7a9b66ad7a5cfd7ddc3773912d
|
||||
repository: tccr.io/truecharts/vikunja-api
|
||||
tag: v0.18.1@sha256:c79ee38ad40783d6098f302735ca0388b938230aa8f1c6cddfa7a903e2191389
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
frontendImage:
|
||||
repository: vikunja/frontend
|
||||
tag: 0.18.2@sha256:1e28d7350a4cd938f1723a5e92ef3251fb45d65ca4079d41daa52ed1900d1535
|
||||
repository: tccr.io/truecharts/vikunja-frontend
|
||||
tag: v0.18.2@sha256:a5b2600ad6854e34d4ded50504b89dc37189ac80140edfbfbcbb25c1124b88ab
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
||||
@@ -63,10 +63,6 @@ envValueFrom:
|
||||
secretKeyRef:
|
||||
name: rediscreds
|
||||
key: redis-password
|
||||
VIKUNJA_SERVICE_JWT_SECRET:
|
||||
secretKeyRef:
|
||||
name: vikunja-secrets
|
||||
key: VIKUNJA_SERVICE_JWT_SECRET
|
||||
|
||||
service:
|
||||
main:
|
||||
|
||||
@@ -18,7 +18,7 @@ name: audiobookshelf
|
||||
sources:
|
||||
- https://hub.docker.com/r/advplyr/audiobookshelf
|
||||
- https://github.com/advplyr/audiobookshelf
|
||||
version: 0.0.2
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
@@ -23,7 +23,7 @@ sources:
|
||||
- https://github.com/RandomNinjaAtk/docker-amd
|
||||
- https://hub.docker.com/r/randomninjaatk/amd
|
||||
type: application
|
||||
version: 1.0.10
|
||||
version: 1.1.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
@@ -17,7 +17,7 @@ maintainers:
|
||||
name: cyberchef
|
||||
sources:
|
||||
- https://hub.docker.com/r/mpepping/cyberchef
|
||||
version: 0.0.3
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- utilities
|
||||
@@ -18,7 +18,7 @@ name: ddns-updater
|
||||
sources:
|
||||
- https://github.com/qdm12/ddns-updater
|
||||
- https://hub.docker.com/r/qmcgaw/ddns-updater
|
||||
version: 0.0.2
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- network
|
||||
@@ -18,7 +18,7 @@ name: drawio
|
||||
sources:
|
||||
- https://hub.docker.com/r/jgraph/drawio
|
||||
- https://github.com/jgraph/drawio
|
||||
version: 0.0.2
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
@@ -1,6 +1,6 @@
|
||||
image:
|
||||
repository: jgraph/drawio
|
||||
tag: 17.4.3@sha256:7b5277ab154ffe4579b31e1ace9fb2f94717e005de142bcc710a4bacc09ab872
|
||||
repository: tccr.io/truecharts/drawio
|
||||
tag: v17.4.3@sha256:aa313569c7d8a3f8d77ce4171d60e98ed1e98617b54d07837aea015570554989
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
||||
@@ -18,7 +18,7 @@ name: fluidd
|
||||
sources:
|
||||
- https://github.com/fluidd-core/fluidd
|
||||
- https://hub.docker.com/r/cadriel/fluidd
|
||||
version: 0.0.2
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- utilities
|
||||
@@ -19,7 +19,7 @@ name: linkding
|
||||
sources:
|
||||
- https://github.com/sissbruecker/linkding
|
||||
- https://hub.docker.com/r/sissbruecker/linkding
|
||||
version: 0.0.8
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- bookmarks
|
||||
@@ -17,7 +17,7 @@ maintainers:
|
||||
name: metube
|
||||
sources:
|
||||
- https://github.com/alexta69/metube
|
||||
version: 0.0.2
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
@@ -1,6 +1,6 @@
|
||||
image:
|
||||
repository: alexta69/metube
|
||||
tag: 2022-04-09@sha256:6d78f897554533d507ccbc104ff04323bb195a95a17041611b4274f0d5abc4aa
|
||||
repository: tccr.io/truecharts/metube
|
||||
tag: v2022-04@sha256:d6bf0a91018131512573288fa6bcf2b86f9f97acb1ad975014eab5e91f5d0e9d
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
env:
|
||||
@@ -17,7 +17,7 @@ maintainers:
|
||||
name: ntfy
|
||||
sources:
|
||||
- https://github.com/binwiederhier/ntfy/
|
||||
version: 0.0.2
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
@@ -1,6 +1,6 @@
|
||||
image:
|
||||
repository: binwiederhier/ntfy
|
||||
tag: v1.20.0@sha256:d2d0b523ae0656d58df5c2681016d2af384917232dbbfa9f252f117741199227
|
||||
repository: tccr.io/truecharts/ntfy
|
||||
tag: v1.20.0@sha256:a639d0eb0833c4d3f830e4fab861f2f3277179e21039957cfc12f942a551d91a
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
extraArgs: ["serve"]
|
||||
@@ -17,7 +17,7 @@ maintainers:
|
||||
name: pinry
|
||||
sources:
|
||||
- https://github.com/pinry/pinry/
|
||||
version: 0.0.1
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
@@ -1,6 +1,6 @@
|
||||
image:
|
||||
repository: getpinry/pinry
|
||||
tag: 2.1.7@sha256:1383191cd7e3466db5896246095c58aaff4dc3a316e239704ea5e2a2a88c551e
|
||||
repository: tccr.io/truecharts/pinry
|
||||
tag: v2.1.7@sha256:7fb1b31d32a2a306113079ccd7f261f05efcafbe7824f60a3a3c89d5b6715efb
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
||||
@@ -17,7 +17,7 @@ maintainers:
|
||||
name: rss-bridge
|
||||
sources:
|
||||
- https://github.com/RSS-Bridge/rss-bridge
|
||||
version: 0.0.2
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
@@ -17,7 +17,7 @@ maintainers:
|
||||
name: snapdrop
|
||||
sources:
|
||||
- https://github.com/linuxserver/docker-snapdrop
|
||||
version: 0.0.2
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
@@ -1,6 +1,6 @@
|
||||
image:
|
||||
repository: linuxserver/snapdrop
|
||||
tag: latest@sha256:2f95ee1fde36379cf56b4a0bda821d27286d30d9206702f79e52c21b2967abca
|
||||
repository: tccr.io/truecharts/snapdrop
|
||||
tag: latest@sha256:a57ce275830b48b7cb29b404a68e4958266eaf538a46442839451e77c7d19a41
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user