feat(serpbear) add serpbear (#5556)

* feat(serpbear) add serpbear

* update repoo to truecharts

* fix chart.yaml

* random gen secret

* quote int

Co-authored-by: Stavros kois <s.kois@outlook.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
Xstar97
2022-12-24 03:56:57 -05:00
committed by GitHub
parent 16e0376e85
commit 56d88007e8
10 changed files with 280 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
# OWNERS file for Kubernetes
OWNERS
# helm-docs templates
*.gotmpl
# docs folder
/docs
# icon
icon.png
+1
View File
@@ -0,0 +1 @@
# Changelog
+30
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
+1
View File
@@ -0,0 +1 @@
# serpbear
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

+150
View File
@@ -0,0 +1,150 @@
# Include{groups}
portals:
open:
# Include{portalLink}
questions:
# Include{global}
# Include{controller}
# Include{replicas}
# Include{replica1}
# Include{controllerExpertExtraArgs}
- variable: serpbear
group: App Configuration
label: Serpbear Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: user
label: User
description: The username you want to use to login to the app.
schema:
type: string
required: true
default: ""
- variable: password
label: Password
description: The password you want to use to login to the app.
schema:
type: string
private: true
required: true
default: ""
- variable: api_key
label: API Key
description: API key that will be used to access the apps API.
schema:
type: string
private: true
required: true
default: ""
- variable: app_url
label: Next Public App URL
description: The URL where your app is hosted and can be accessed.
schema:
type: string
required: true
default: http://localhost:10605
- variable: session_duration
label: Session Duration
description: The duration(in hour) of the user's logged in session.
schema:
type: int
default: 24
# Include{containerConfig}
# Include{serviceRoot}
- variable: main
label: Main Service
description: The Primary service on which the healthcheck runs, often the webUI
schema:
additional_attrs: true
type: dict
attrs:
# Include{serviceSelectorLoadBalancer}
# Include{serviceSelectorExtras}
- variable: main
label: Main Service Port Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: port
label: Port
description: This port exposes the container port on the service
schema:
type: int
default: 10605
required: true
# Include{serviceExpertRoot}
default: false
# Include{serviceExpert}
# Include{serviceList}
# Include{persistenceRoot}
- variable: data
label: App Data Storage
description: Stores the Application Data.
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
# Include{persistenceList}
# Include{ingressRoot}
- variable: main
label: Main Ingress
schema:
additional_attrs: true
type: dict
attrs:
# Include{ingressDefault}
# Include{ingressTLS}
# Include{ingressTraefik}
# Include{ingressList}
# Include{security}
# Include{securityContextAdvancedRoot}
- variable: privileged
label: Privileged mode
schema:
type: boolean
default: false
- variable: readOnlyRootFilesystem
label: ReadOnly Root Filesystem
schema:
type: boolean
default: true
- variable: allowPrivilegeEscalation
label: Allow Privilege Escalation
schema:
type: boolean
default: false
- variable: runAsNonRoot
label: runAsNonRoot
schema:
type: boolean
default: true
# Include{podSecurityContextRoot}
- variable: runAsUser
label: runAsUser
description: The UserID of the user running the application
schema:
type: int
default: 568
- variable: runAsGroup
label: runAsGroup
description: The groupID this App of the user running the application
schema:
type: int
default: 568
- variable: fsGroup
label: fsGroup
description: The group that should own ALL storage.
schema:
type: int
default: 568
# Include{podSecurityContextAdvanced}
# Include{resources}
# Include{advanced}
# Include{addons}
# Include{codeserver}
# Include{vpn}
# Include{documentation}
@@ -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 }}
@@ -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" . }}
+31
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
+1
View File
@@ -228,6 +228,7 @@ words:
- Scipy
- selfsigned
- sendgrid
- serpbear
- serverconfig
- servername
- serverstransports