TrueChartsClone/charts/incubator/misskey/values.yaml

66 lines
1.3 KiB
YAML
Raw Normal View History

feat(Misskey): Add Misskey (#4315) * Importing original chart files for misskey * update chart.yaml * Adding truecharts common library * debugging setup * Edits to password management * updated TrueNAS questions for misskey * Update to Chart.yaml * Fix chart version Signed-off-by: Sam Smucny <smucny.sam@gmail.com> * Add target port UI question * Cleanup and comment values.yaml * Addressing review comments * Apply suggestions from code review Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * Addressing PR Reviews: - remove targetPort (only using port) - update image src to tccr.io - remove vestigial nextcloud values - remove auto file permissions * Update charts/incubator/misskey/values.yaml The hash value from truecharts is different than docker.io Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Signed-off-by: Sam Smucny <smucny.sam@gmail.com> * Add back targetPort in questions.yaml * Move configmap to tpl format and include in common * Move secrets into configfile templates: - remove initcontainer - update host/pass values in default.yml - remove misskeyconfig-src pvc - remove secret env vars * trim " from passwords * Add other misskey configuration options * typo * Fix indentation * adds couple more options * whoops Signed-off-by: Sam Smucny <smucny.sam@gmail.com> Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros kois <s.kois@outlook.com>
2022-11-09 03:28:51 -05:00
image:
repository: tccr.io/truecharts/misskey
pullPolicy: IfNotPresent
tag: 13.8.1@sha256:8c0686172b31fd55c25168f333107ba1ae7a622505d36a95d387a41209927fbe
feat(Misskey): Add Misskey (#4315) * Importing original chart files for misskey * update chart.yaml * Adding truecharts common library * debugging setup * Edits to password management * updated TrueNAS questions for misskey * Update to Chart.yaml * Fix chart version Signed-off-by: Sam Smucny <smucny.sam@gmail.com> * Add target port UI question * Cleanup and comment values.yaml * Addressing review comments * Apply suggestions from code review Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * Addressing PR Reviews: - remove targetPort (only using port) - update image src to tccr.io - remove vestigial nextcloud values - remove auto file permissions * Update charts/incubator/misskey/values.yaml The hash value from truecharts is different than docker.io Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Signed-off-by: Sam Smucny <smucny.sam@gmail.com> * Add back targetPort in questions.yaml * Move configmap to tpl format and include in common * Move secrets into configfile templates: - remove initcontainer - update host/pass values in default.yml - remove misskeyconfig-src pvc - remove secret env vars * trim " from passwords * Add other misskey configuration options * typo * Fix indentation * adds couple more options * whoops Signed-off-by: Sam Smucny <smucny.sam@gmail.com> Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros kois <s.kois@outlook.com>
2022-11-09 03:28:51 -05:00
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
fsGroup: 33
service:
main:
ports:
main:
port: 3003
misskey:
# Final accessible URL seen by a user. ONCE YOU HAVE STARTED THE INSTANCE, DO NOT CHANGE THE URL SETTINGS AFTER THAT!
url: "https://example.tld/"
# ID generation method. 'aid' recommended.
id: "aid"
other:
disableHSTS: false
signToActivityPubGet: false
maxFileSize: 262144000
clusterLimit: 1
deliverJobConcurrency: 128
inboxJobConcurrency: 16
deliverJobPerSec: 128
inboxJobPerSec: 16
deliverJobMaxAttempts: 12
inboxJobMaxAttempts: 8
allowedPrivateNetworks:
- 127.0.0.1/32
env:
# NODE_ENV = production | development
NODE_ENV: production
persistence:
misskeyconfig:
enabled: true
type: configMap
objectName: misskeyconfig
mountPath: "/misskey/.config"
files:
enabled: true
mountPath: "/misskey/files"
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: misskey
postgresqlDatabase: misskey
redis:
enabled: true
existingSecret: "rediscreds"
portal:
enabled: true