* chore(questions): replace port parts with templates * chore(questions): replace controller parts with templates * remove tons of whitespce * remove quotes from strings on templates * make complete controller an include * default to recreate * remove replica and strategies as it's covered from controllerStrtegies include * remove whitespace again * replace controllertype with include (deployment/daemonset/statefulset) * replace advanced port part except targetport * remove more quotes * add hidden toggle of enable the port * new includes * update build script * controller deploy/stateful/deamon template changes * replace controllerStrategies with replicas, replica#, strategy, recreate * move 2 templates into a subfolder * remove quotes * remove disabled portals from questions and defined them on values * remove enabled portal from the questions and add it on values * one more app * Portal cleanup * remove portal templates * add more includes * replace portal links * move some templates in folders * replace ingressRoot with template * more grouping * replace persistenceroot with template * replace serviceExpertRoot * replace serviceroot * fix a rogue one * vctRoot * securityContext cleanup * remove quotes from templates on string * replace vctRoot * replace advanedSecurityRoot * replace podsecurity root * Update .github/scripts/build-catalog.sh * Update values.yaml * remove dupe portal * update build-release script * fix paths * fix apps with imageSelector Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/libreddit
|
|
tag: latest@sha256:2d91de4961030239d5ebbbe90e45973d2ae4751187c0e4ab0bf48c7826b99a81
|
|
pullPolicy: IfNotPresent
|
|
|
|
libreddit:
|
|
theme: system
|
|
front_page: default
|
|
layout: card
|
|
post_sort: hot
|
|
comment_sort: confidence
|
|
wide: false
|
|
show_nsfw: false
|
|
use_hls: false
|
|
hide_hls_notification: false
|
|
autoplay_videos: false
|
|
|
|
probes:
|
|
liveness:
|
|
path: "/settings"
|
|
readiness:
|
|
path: "/settings"
|
|
startup:
|
|
path: "/settings"
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10257
|
|
targetPort: 8080
|
|
|
|
configmap:
|
|
libreddit:
|
|
enabled: true
|
|
data:
|
|
LIBREDDIT_DEFAULT_THEME: "{{ .Values.libreddit.theme }}"
|
|
LIBREDDIT_DEFAULT_FRONT_PAGE: "{{ .Values.libreddit.front_page }}"
|
|
LIBREDDIT_DEFAULT_LAYOUT: "{{ .Values.libreddit.layout }}"
|
|
LIBREDDIT_DEFAULT_POST_SORT: "{{ .Values.libreddit.post_sort }}"
|
|
LIBREDDIT_DEFAULT_COMMENT_SORT: "{{ .Values.libreddit.comment_sort }}"
|
|
LIBREDDIT_DEFAULT_WIDE: '{{ ternary "on" "off" .Values.libreddit.wide }}'
|
|
LIBREDDIT_DEFAULT_SHOW_NSFW: '{{ ternary "on" "off" .Values.libreddit.show_nsfw }}'
|
|
LIBREDDIT_DEFAULT_USE_HLS: '{{ ternary "on" "off" .Values.libreddit.use_hls }}'
|
|
LIBREDDIT_DEFAULT_HIDE_HLS_NOTIFICATION: '{{ ternary "on" "off" .Values.libreddit.hide_hls_notification }}'
|
|
LIBREDDIT_DEFAULT_AUTOPLAY_VIDEOS: '{{ ternary "on" "off" .Values.libreddit.autoplay_videos }}'
|
|
|
|
envFrom:
|
|
- configMapRef:
|
|
name: '{{ include "tc.common.names.fullname" . }}-libreddit'
|
|
|
|
portal:
|
|
enabled: true
|