chore(apps): Sync questions and values env's (#2916)

* chore(apps): Sync questions and values env's

* chore(apps): sync questions and values env's

* chore(apps): sync questions and values env's

* chore(apps): sync questions and values env's

* chore(apps): sync questions and values env's

* chore(apps): sync questions and values env's

* chore(apps): sync questions and values env's

* remove disabled ingress from values

* remove required: false from questions

* whoops

* some cleanup

* more cleanup

* clean

* commented

* some fixes
This commit is contained in:
Stavros Kois
2022-06-17 10:24:54 +02:00
committed by GitHub
parent 7d5d05b7ca
commit ff2a5dae0d
227 changed files with 669 additions and 1024 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "0.90.78"
description: Status page for monitoring your websites and applications
name: statping
version: 7.0.3
version: 7.0.4
kubeVersion: ">=1.16.0-0"
keywords:
- statping
+3 -20
View File
@@ -1,31 +1,18 @@
image:
# -- image repository
repository: tccr.io/truecharts/statping
# -- image tag
tag: v0.90.78@sha256:975e6f7361c435414d14c3700a356819fd6f4eb00df8cb2c13a24e5511580042
# -- image pull policy
pullPolicy: IfNotPresent
# -- environment variables. See [application docs](https://github.com/statping/statping/wiki/Config-with-.env-File) for more details.
# @default -- See below
secretEnv:
# -- dashboard admin user (needed to edit)
ADMIN_USER: "admin"
# -- dashboard admin password (needed to edit)
ADMIN_PASSWORD: "changeme"
# -- dashboard admin email
ADMIN_EMAIL: "info@example.com"
env:
# -- Set the container timezone
# -- Name of the Statping instance
NAME: "Statping Example"
# -- Description of the Statping instance
DESCRIPTION: "This is a Statping instance deployed as Helm chart"
# -- External URL you use to connect to the statping (the one you enter in your browser)
VIRTUAL_HOST: ""
# -- Use CDN for static context from third-parties
USE_CDN: false
# -- Disable logs from appearing and writing to disk
DISABLE_LOGS: false
DB_CONN: "postgres"
DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
@@ -40,23 +27,19 @@ env:
secretKeyRef:
name: dbcreds
key: plainhost
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 10099
targetPort: 8080
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
data:
enabled: true
mountPath: "/app"
# -- Enable and configure postgresql database subchart under this key.
# @default -- See values.yaml
postgresql:
enabled: true
existingSecret: "dbcreds"