Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-01-19 09:11:30 +00:00
parent bf642b9add
commit 35d7a7ce9a
15 changed files with 2264 additions and 0 deletions

View File

@ -0,0 +1,13 @@
**Important:**
*for the complete changelog, please refer to the website*
## [statping-ng-11.0.0](https://github.com/truecharts/charts/compare/statping-ng-2.0.8...statping-ng-11.0.0) (2023-01-19)
### Feat
- remove duplicate app and switch current to a maint… ([#6523](https://github.com/truecharts/charts/issues/6523))

View File

@ -0,0 +1,32 @@
apiVersion: v2
appVersion: "0.90.78"
description: Status page for monitoring your websites and applications
name: statping-ng
version: 11.0.0
kubeVersion: ">=1.16.0-0"
keywords:
- statping
- status
- status-page
home: https://truecharts.org/charts/stable/statping
icon: https://truecharts.org/img/hotlink-ok/chart-icons/statping.png
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/statping
- https://github.com/statping/statping
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 11.1.2
- condition: postgresql.enabled
name: postgresql
repository: https://charts.truecharts.org/
version: 11.0.20
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
annotations:
truecharts.org/catagories: |
- media
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE%20Apps/Important-MUST-READ).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
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!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,9 @@
## [statping-ng-11.0.0](https://github.com/truecharts/charts/compare/statping-ng-2.0.8...statping-ng-11.0.0) (2023-01-19)
### Feat
- remove duplicate app and switch current to a maint… ([#6523](https://github.com/truecharts/charts/issues/6523))

View File

@ -0,0 +1,8 @@
Status page for monitoring your websites and applications
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/statping-ng](https://truecharts.org/charts/stable/statping-ng)
---
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.

View File

@ -0,0 +1,89 @@
image:
repository: tccr.io/truecharts/statping-ng
tag: v0.90.80@sha256:0d09f2177a0d7242ee72521d2eb31d93b5551cd9790030569befcc29c6f2aa2c
pullPolicy: IfNotPresent
statping:
name: Statping
description: This is a Statping instance deployed as Helm chart
domain: ""
language: ""
admin_user: admin
admin_pass: admin
admin_email: admin@example.com
sample_data: false
allow_reports: false
use_cdn: true
disable_logs: false
disable_colors: false
remove_after: 2160h
cleanup_interval: 1h
env:
DB_PASS:
secretKeyRef:
name: dbcreds
key: postgresql-password
DB_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
envFrom:
- configMapRef:
name: '{{ include "tc.common.names.fullname" . }}-config'
service:
main:
ports:
main:
port: 10099
probes:
liveness:
path: /health
readiness:
path: /health
startup:
path: /health
persistence:
data:
enabled: true
mountPath: "/app"
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: postgres
postgresqlDatabase: postgres
metrics:
# -- Enable and configure a Prometheus serviceMonitor for the chart under this key.
# @default -- See values.yaml
enabled: true
serviceMonitor:
interval: 1m
scrapeTimeout: 30s
labels: {}
# -- Enable and configure Prometheus Rules for the chart under this key.
# @default -- See values.yaml
prometheusRule:
enabled: false
labels: {}
# -- Configure additionial rules for the chart under this key.
# @default -- See prometheusrules.yaml
rules:
[]
# - alert: UnifiPollerAbsent
# annotations:
# description: Unifi Poller has disappeared from Prometheus service discovery.
# summary: Unifi Poller is down.
# expr: |
# absent(up{job=~".*unifi-poller.*"} == 1)
# for: 5m
# labels:
# severity: critical
portal:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,49 @@
{{/* Define the configmap */}}
{{- define "statping.config" -}}
{{- $configName := printf "%s-config" (include "tc.common.names.fullname" .) }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ $configName }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
data:
PORT: {{ .Values.service.main.ports.main.port | quote }}
DB_CONN: "postgres"
DB_DATABASE: {{ .Values.postgresql.postgresqlDatabase | quote }}
DB_USER: {{ .Values.postgresql.postgresqlUsername | quote }}
DB_PORT: "5432"
POSTGRES_SSLMODE: "disable"
{{- with .Values.statping.name }}
NAME: {{ . | quote }}
{{- end -}}
{{- with .Values.statping.description }}
DESCRIPTION: {{ . | quote }}
{{- end -}}
{{- with .Values.statping.domain }}
DOMAIN: {{ . | quote }}
{{- end -}}
{{- with .Values.statping.language }}
LANGUAGE: {{ . | quote }}
{{- end }}
ADMIN_USER: {{ .Values.statping.admin_user | quote }}
ADMIN_PASS: {{ .Values.statping.admin_pass | quote }}
ADMIN_EMAIL: {{ .Values.statping.admin_email | quote }}
SAMPLE_DATA: {{ .Values.statping.sample_data | quote }}
ALLOW_REPORTS: {{ .Values.statping.allow_reports | quote }}
USE_CDN: {{ .Values.statping.use_cdn | quote }}
DISABLE_LOGS: {{ .Values.statping.disable_logs | quote }}
DISABLE_COLORS: {{ .Values.statping.disable_colors | quote }}
{{- with .Values.statping.remove_after }}
REMOVE_AFTER: {{ . | quote }}
{{- end -}}
{{- with .Values.statping.cleanup_interval }}
CLEANUP_INTERVAL: {{ . | quote }}
{{- end -}}
{{- end -}}

View File

@ -0,0 +1,21 @@
{{- define "statping.prometheusrule" -}}
{{- if and .Values.metrics.enabled .Values.metrics.prometheusRule.enabled }}
---
apiVersion: monitoring.coreos.com/v1
kind: PrometheusRule
metadata:
name: {{ include "tc.common.names.fullname" . }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
{{- with .Values.metrics.prometheusRule.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
groups:
- name: {{ include "tc.common.names.fullname" . }}
rules:
{{- with .Values.metrics.prometheusRule.rules }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
{{- end -}}

View File

@ -0,0 +1,27 @@
{{- define "statping.servicemonitor" -}}
{{- if .Values.metrics.enabled }}
---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: {{ include "tc.common.names.fullname" . }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
{{- with .Values.metrics.serviceMonitor.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
selector:
matchLabels:
{{- include "tc.common.labels.selectorLabels" . | nindent 6 }}
endpoints:
- port: main
{{- with .Values.metrics.serviceMonitor.interval }}
interval: {{ . }}
{{- end }}
{{- with .Values.metrics.serviceMonitor.scrapeTimeout }}
scrapeTimeout: {{ . }}
{{- end }}
path: /metrics
{{- end }}
{{- end -}}

View File

@ -0,0 +1,10 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.common.loader.init" . }}
{{/* Render config */}}
{{- include "statping.config" . }}
{{- include "statping.servicemonitor" . -}}
{{- include "statping.prometheusrule" . -}}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}

View File

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/statping.png
categories:
- media