Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
fcd22223a0
commit
47f5405ccf
|
@ -0,0 +1,8 @@
|
||||||
|
**Important:**
|
||||||
|
*for the complete changelog, please refer to the website*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [answer-0.0.1]answer-0.0.1 (2023-11-01)
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: "1.2.0"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.truecharts.org
|
||||||
|
version: 14.2.1
|
||||||
|
deprecated: false
|
||||||
|
description: A Q&A platform software for teams at any scales.
|
||||||
|
home: https://truecharts.org/charts/incubator/answer
|
||||||
|
icon: https://truecharts.org/img/hotlink-ok/chart-icons/answer.png
|
||||||
|
keywords:
|
||||||
|
- answer
|
||||||
|
- forum
|
||||||
|
kubeVersion: ">=1.16.0-0"
|
||||||
|
maintainers:
|
||||||
|
- email: info@truecharts.org
|
||||||
|
name: TrueCharts
|
||||||
|
url: https://truecharts.org
|
||||||
|
name: answer
|
||||||
|
sources:
|
||||||
|
- https://github.com/truecharts/charts/tree/master/charts/incubator/answer
|
||||||
|
- https://github.com/answerdev/answer
|
||||||
|
type: application
|
||||||
|
version: 0.0.1
|
||||||
|
annotations:
|
||||||
|
truecharts.org/catagories: forum
|
||||||
|
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1 @@
|
||||||
|
# README
|
|
@ -0,0 +1,4 @@
|
||||||
|
|
||||||
|
|
||||||
|
## [answer-0.0.1]answer-0.0.1 (2023-11-01)
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
A Q&A platform software for teams at any scales.
|
||||||
|
|
||||||
|
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/answer](https://truecharts.org/charts/incubator/answer)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
TrueCharts can only exist due to the incredible effort of our staff.
|
||||||
|
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,80 @@
|
||||||
|
image:
|
||||||
|
repository: tccr.io/truecharts/answer
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: v1.2.0@sha256:70a578170bca4a7a1040d44cb5ff143d5e9c2c2f32f9d48f1ad4519d61c35451
|
||||||
|
|
||||||
|
service:
|
||||||
|
main:
|
||||||
|
ports:
|
||||||
|
main:
|
||||||
|
protocol: http
|
||||||
|
port: 9080
|
||||||
|
|
||||||
|
answer:
|
||||||
|
app:
|
||||||
|
language: en-US
|
||||||
|
# DEBUG | INFO | WARN | ERROR
|
||||||
|
log_level: DEBUG
|
||||||
|
site:
|
||||||
|
name: Answer
|
||||||
|
url: http://localhost:9080
|
||||||
|
contact_email: contact@example.com
|
||||||
|
admin:
|
||||||
|
name: admin
|
||||||
|
password: super-secret-password
|
||||||
|
email: admin@example.com
|
||||||
|
|
||||||
|
workload:
|
||||||
|
main:
|
||||||
|
podSpec:
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
path: /healthz
|
||||||
|
readiness:
|
||||||
|
path: /healthz
|
||||||
|
startup:
|
||||||
|
type: tcp
|
||||||
|
env:
|
||||||
|
AUTO_INSTALL: true
|
||||||
|
INSTALL_PORT: "{{ .Values.service.main.ports.main.port }}"
|
||||||
|
DB_TYPE: postgres
|
||||||
|
DB_USERNAME: "{{ .Values.cnpg.main.user }}"
|
||||||
|
DB_PASSWORD:
|
||||||
|
secretKeyRef:
|
||||||
|
name: cnpg-main-user
|
||||||
|
key: password
|
||||||
|
# Host + port
|
||||||
|
DB_HOST: '{{ printf "%s:5432" (.Values.cnpg.main.creds.host | trimAll "\"") }}'
|
||||||
|
DB_NAME: "{{ .Values.cnpg.main.database }}"
|
||||||
|
# App
|
||||||
|
LANGUAGE: "{{ .Values.answer.app.language }}"
|
||||||
|
LOG_LEVEL: "{{ .Values.answer.app.log_level }}"
|
||||||
|
# Site
|
||||||
|
SITE_NAME: "{{ .Values.answer.site.name }}"
|
||||||
|
SITE_URL: "{{ .Values.answer.site.url }}"
|
||||||
|
CONTACT_EMAIL: "{{ .Values.answer.site.contact_email }}"
|
||||||
|
# Admin
|
||||||
|
ADMIN_NAME: "{{ .Values.answer.admin.name }}"
|
||||||
|
ADMIN_PASSWORD: "{{ .Values.answer.admin.password }}"
|
||||||
|
ADMIN_EMAIL: "{{ .Values.answer.admin.email }}"
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
data:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /data
|
||||||
|
|
||||||
|
cnpg:
|
||||||
|
main:
|
||||||
|
enabled: true
|
||||||
|
user: answer
|
||||||
|
database: answer
|
||||||
|
|
||||||
|
portal:
|
||||||
|
open:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
operator:
|
||||||
|
verify:
|
||||||
|
enabled: false
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
||||||
|
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1 @@
|
||||||
|
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -0,0 +1,4 @@
|
||||||
|
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/answer.png
|
||||||
|
categories:
|
||||||
|
- null
|
||||||
|
screenshots: []
|
Loading…
Reference in New Issue