feat(noisedash): add noisedash (#3931)

* feat(noisedash): add noisedash

* add icon

* Excellent copy pasta

* relative path

* aha!

* absolute path and comma

* rofs

* root

* try node user

* root
This commit is contained in:
Stavros Kois
2022-09-28 10:11:05 +03:00
committed by GitHub
parent 08c0e64c9e
commit af345bc43a
9 changed files with 266 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
+25
View File
@@ -0,0 +1,25 @@
apiVersion: v2
appVersion: "10.6.2"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 10.6.4
description: Self-hosted web tool for generating ambient noises
home: https://truecharts.org/docs/charts/stable/airsonic
icon: https://truecharts.org/img/hotlink-ok/chart-icons/airsonic.png
keywords:
- noise
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: noisedash
sources:
- https://github.com/kaythomas0/noisedash
version: 0.0.1
annotations:
truecharts.org/catagories: |
- media
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

+133
View File
@@ -0,0 +1,133 @@
# Include{groups}
portals:
open:
# Include{portalLink}
questions:
# Include{global}
# Include{controller}
# Include{controllerDeployment}
# Include{replicas}
# Include{replica1}
# Include{strategy}
# Include{recreate}
# Include{controllerExpert}
# Include{controllerExpertExtraArgs}
- variable: noisedash
group: Container Configuration
label: Noisedash Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: max_sample_size_in_bytes
label: Max Sample Size in Bytes
description: Sets the max size for samples
schema:
type: int
required: true
default: 10737418240
# 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: 10328
required: true
# Include{advancedPortHTTP}
- variable: targetPort
label: Target Port
description: The internal(!) port on the container the Application runs on
schema:
type: int
default: 10328
# Include{serviceExpertRoot}
default: false
# Include{serviceExpert}
# Include{serviceList}
# Include{persistenceRoot}
- variable: samples
label: App Samples Storage
description: Stores the Application Samples.
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
# Include{persistenceAdvanced}
# Include{persistenceList}
# Include{ingressRoot}
- variable: main
label: Main Ingress
schema:
additional_attrs: true
type: dict
attrs:
# Include{ingressDefault}
# Include{ingressTLS}
# Include{ingressTraefik}
# Include{ingressExpert}
# 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: false
- variable: allowPrivilegeEscalation
label: Allow Privilege Escalation
schema:
type: boolean
default: false
- variable: runAsNonRoot
label: runAsNonRoot
schema:
type: boolean
default: false
# Include{securityContextAdvanced}
# Include{podSecurityContextRoot}
- variable: runAsUser
label: runAsUser
description: The UserID of the user running the application
schema:
type: int
default: 0
- variable: runAsGroup
label: runAsGroup
description: The groupID this App of the user running the application
schema:
type: int
default: 0
- 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{documentation}
@@ -0,0 +1,27 @@
{{/* Define the secrets */}}
{{- define "noisedash.config" -}}
{{- $configName := printf "%s-noisedash-config" (include "tc.common.names.fullname" .) }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ $configName }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
data:
default.json: |
{
"Server": {
"listeningPort": {{ .Values.service.main.ports.main.port }},
"sessionFileStorePath": "sessions",
"sampleUploadPath": "/var/noisedash/samples",
"maxSampleSize": {{ int .Values.noisedash.max_sample_size_in_bytes }},
"logFile": "/var/noisedash/log/log/noisedash.log",
"tls": false,
"tlsKey": "certs/key.pem",
"tlsCert": "certs/cert.pem"
}
}
{{- end -}}
@@ -0,0 +1,21 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.common.loader.init" . }}
{{- define "noisedash.configvolume" -}}
enabled: true
mountPath: /var/noisedash/config
type: custom
readOnly: true
volumeSpec:
configMap:
name: {{ include "tc.common.names.fullname" . }}-noisedash-config
items:
- key: default.json
path: default.json
{{- end -}}
{{- include "noisedash.config" . -}}
{{- $_ := set .Values.persistence "noisedash-config" (include "noisedash.configvolume" . | fromYaml) -}}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}
+29
View File
@@ -0,0 +1,29 @@
image:
repository: tccr.io/truecharts/noisedash
tag: v0.6.5@sha256:fedd0dc06300ba834e190323a8a37c7e555efeb179dcf34a6607da969a4c3956
pullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
noisedash:
max_sample_size_in_bytes: 10737418240
service:
main:
ports:
main:
port: 10328
persistence:
samples:
enabled: true
mountPath: "/var/noisedash/samples"
portal:
enabled: true
+1
View File
@@ -158,6 +158,7 @@ words:
- nodeport
- nodeports
- nohardlinks
- noisedash
- notebookbar
- OOKLA
- ornias