Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-12-24 09:00:21 +00:00
parent d2161e1ed1
commit f6a9fd1628
12 changed files with 1994 additions and 0 deletions

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [serpbear-0.0.1]serpbear-0.0.1 (2022-12-24)

View File

@ -0,0 +1,30 @@
apiVersion: v2
appVersion: "latest"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 11.0.7
deprecated: false
description: Search Engine Position Tracking App.
home: https://truecharts.org/docs/charts/incubator/serpbear
icon: https://truecharts.org/img/hotlink-ok/chart-icons/serpbear.png
keywords:
- serpbear
- metrics
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: serpbear
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/serpbear
- https://github.com/towfiqi/serpbear
- https://hub.docker.com/r/towfiqi/serpbear
type: application
version: 0.0.1
annotations:
truecharts.org/catagories: |
- metrics
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1 @@
# serpbear

View File

@ -0,0 +1,4 @@
## [serpbear-0.0.1]serpbear-0.0.1 (2022-12-24)

View File

@ -0,0 +1,8 @@
Search Engine Position Tracking App.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/docs/charts/incubator/serpbear](https://truecharts.org/docs/charts/incubator/serpbear)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/docs/about/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,31 @@
image:
repository: tccr.io/truecharts/serpbear
pullPolicy: IfNotPresent
tag: latest@sha256:2aeb05064783dee6c17751eecb0d2d23f6f7e06719c6a34c6d757f7195df04d9
serpbear:
user: admin
password: secret
session_duration: 24
api_key: ""
app_url: http://localhost:10605
envFrom:
- secretRef:
name: '{{ include "tc.common.names.fullname" . }}-env-secret'
service:
main:
ports:
main:
protocol: HTTP
targetPort: 3000
port: 10605
persistence:
data:
enabled: true
mountPath: /app/data
portal:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,28 @@
{{/* Define the secret */}}
{{- define "serpbear.secret" -}}
{{- $secretName := printf "%s-env-secret" (include "tc.common.names.fullname" .) }}
---
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: {{ $secretName }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
data:
{{/* Secret Key */}}
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
SECRET: {{ index .data "SECRET" }}
{{- else }}
SECRET: {{ randAlphaNum 32 | b64enc }}
{{- end }}
{{- with .Values.serpbear.api_key | b64enc }}
APIKEY: {{ . }}
{{- end }}
USER: {{ .Values.serpbear.user | b64enc }}
PASSWORD: {{ .Values.serpbear.password | b64enc }}
SESSION_DURATION: {{ .Values.serpbear.session_duration | quote | b64enc }}
NEXT_PUBLIC_APP_URL: {{ .Values.serpbear.app_url | b64enc }}
{{- end }}

View File

@ -0,0 +1,8 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.common.loader.init" . }}
{{/* Render secret */}}
{{- include "serpbear.secret" . }}
{{/* 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/serpbear.png
categories:
- metrics