.
This commit is contained in:
parent
1ee08107f5
commit
ea0d92d722
@ -8,4 +8,5 @@ repos:
|
||||
- id: end-of-file-fixer
|
||||
exclude: README.md$
|
||||
- id: check-yaml
|
||||
exclude: all.yaml
|
||||
- id: check-added-large-files
|
||||
|
6
charts/gotify/Chart.lock
Normal file
6
charts/gotify/Chart.lock
Normal file
@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: lib
|
||||
repository: oci://repo.rre.nu/helm
|
||||
version: 1.0.2
|
||||
digest: sha256:fa5e2c6ef2a6f75b236acf60aef5748958d89e03f6f8c6da4b396dee46731401
|
||||
generated: "2024-10-22T16:16:46.133911179+02:00"
|
62
charts/gotify/README.md
Normal file
62
charts/gotify/README.md
Normal file
@ -0,0 +1,62 @@
|
||||
|
||||
Gotify
|
||||
===========
|
||||
|
||||
Gotify · a simple server for sending and receiving messages
|
||||
|
||||
|
||||
## Configuration
|
||||
|
||||
The following table lists the configurable parameters of the Gotify chart and their default values.
|
||||
|
||||
| Parameter | Description | Default |
|
||||
| ------------------------ | ----------------------- | -------------- |
|
||||
| `image.repository` | | `"ghcr.io/gotify/server"` |
|
||||
| `gotify.server.keepaliveperiodseconds` | 0 = use Go default (15s); -1 = disable keepalive; set the interval in which keepalive packets will be sent. Only change this value if you know what you are doing. | `0` |
|
||||
| `gotify.server.listenaddr` | the address to bind on, leave empty to bind on all addresses. Prefix with "unix:" to create a unix socket. Example: "unix:/tmp/gotify.sock". | `""` |
|
||||
| `gotify.server.port` | the port the HTTP server will listen on | `80` |
|
||||
| `gotify.server.ssl.enabled` | if https should be enabled | `false` |
|
||||
| `gotify.server.ssl.redirecttohttps` | redirect to https if site is accessed by http | `true` |
|
||||
| `gotify.server.ssl.listenaddr` | the address to bind on, leave empty to bind on all addresses. Prefix with "unix:" to create a unix socket. Example: "unix:/tmp/gotify.sock". | `""` |
|
||||
| `gotify.server.ssl.port` | the https port | `443` |
|
||||
| `gotify.server.ssl.certfile` | the cert file (leave empty when using letsencrypt) | `null` |
|
||||
| `gotify.server.ssl.certkey` | the cert key (leave empty when using letsencrypt) | `null` |
|
||||
| `gotify.server.ssl.letsencrypt.enabled` | if the certificate should be requested from letsencrypt | `false` |
|
||||
| `gotify.server.ssl.letsencrypt.accepttos` | if you accept the tos from letsencrypt | `false` |
|
||||
| `gotify.server.ssl.letsencrypt.cache` | the directory of the cache from letsencrypt | `"data/certs"` |
|
||||
| `gotify.server.ssl.letsencrypt.hosts` | the hosts for which letsencrypt should request certificates | `null` |
|
||||
| `gotify.server.responseheaders` | response headers are added to every response (default: none) | `null` |
|
||||
| `gotify.server.trustedproxies` | IPs or IP ranges of trusted proxies. Used to obtain the remote ip via the X-Forwarded-For header. (configure 127.0.0.1 to trust sockets) | `null` |
|
||||
| `gotify.server.cors.alloworigins` | | `null` |
|
||||
| `gotify.server.cors.allowmethods` | | `null` |
|
||||
| `gotify.server.cors.allowheaders` | | `null` |
|
||||
| `gotify.server.stream.pingperiodseconds` | the interval in which websocket pings will be sent. Only change this value if you know what you are doing. | `45` |
|
||||
| `gotify.server.stream.allowedorigins` | allowed origins for websocket connections (same origin is always allowed, default only same origin) | `null` |
|
||||
| `gotify.database.dialect` | | `"sqlite3"` |
|
||||
| `gotify.database.connection` | | `"data/gotify.db"` |
|
||||
| `gotify.defaultuser.name` | the username of the default user | `"admin"` |
|
||||
| `gotify.defaultuser.pass` | the password of the default user | `"admin"` |
|
||||
| `gotify.passstrength` | the bcrypt password strength (higher = better but also slower) | `10` |
|
||||
| `gotify.uploadedimagesdir` | the directory for storing uploaded images | `"data/images"` |
|
||||
| `gotify.pluginsdir` | the directory where plugin resides (leave empty to disable plugins) | `"data/plugins"` |
|
||||
| `gotify.registration` | enable registrations | `false` |
|
||||
| `service.main.enabled` | | `true` |
|
||||
| `service.main.type` | | `"ClusterIP"` |
|
||||
| `service.main.annotations` | | `{}` |
|
||||
| `service.main.labels` | | `{}` |
|
||||
| `service.main.ports.http.port` | | `80` |
|
||||
| `ingress.enabled` | | `false` |
|
||||
| `ingress.service` | what service should the ingress target | `"http"` |
|
||||
| `ingress.servicePort` | | `80` |
|
||||
| `ingress.className` | | `""` |
|
||||
| `ingress.annotations` | | `{}` |
|
||||
| `ingress.hosts` | | `[{"host": "chart-example.local", "paths": [{"path": "/", "pathType": "ImplementationSpecific"}]}]` |
|
||||
| `livenessProbe.httpGet.path` | | `"/"` |
|
||||
| `livenessProbe.httpGet.port` | | `"http"` |
|
||||
| `readinessProbe.httpGet.path` | | `"/"` |
|
||||
| `readinessProbe.httpGet.port` | | `"http"` |
|
||||
|
||||
|
||||
|
||||
|
||||
|
BIN
charts/gotify/charts/lib-1.0.2.tgz
Normal file
BIN
charts/gotify/charts/lib-1.0.2.tgz
Normal file
Binary file not shown.
10
charts/gotify/templates/config.tpl
Normal file
10
charts/gotify/templates/config.tpl
Normal file
@ -0,0 +1,10 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: gotify-config
|
||||
namespace: {{ .Values.namespace | default "default" }}
|
||||
labels:
|
||||
{{- include "lib.labels" . | nindent 4}}
|
||||
type: Opauge
|
||||
data:
|
||||
config.yml: {{ toYaml .Values.gotify | b64enc }}
|
37
charts/node-red/.gitignore
vendored
Normal file
37
charts/node-red/.gitignore
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
# General files for the project
|
||||
pkg/*
|
||||
*.pyc
|
||||
bin/*
|
||||
.project
|
||||
/.bin
|
||||
/_test/secrets/*.json
|
||||
|
||||
# OSX leaves these everywhere on SMB shares
|
||||
._*
|
||||
|
||||
# OSX trash
|
||||
.DS_Store
|
||||
|
||||
# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
|
||||
.idea/
|
||||
*.iml
|
||||
|
||||
# Vscode files
|
||||
.vscode
|
||||
|
||||
# Emacs save files
|
||||
*~
|
||||
\#*\#
|
||||
.\#*
|
||||
|
||||
# Vim-related files
|
||||
[._]*.s[a-w][a-z]
|
||||
[._]s[a-w][a-z]
|
||||
*.un~
|
||||
Session.vim
|
||||
.netrwhist
|
||||
|
||||
# Chart dependencies
|
||||
**/charts/*.tgz
|
||||
|
||||
.history
|
6
charts/node-red/Chart.lock
Normal file
6
charts/node-red/Chart.lock
Normal file
@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: lib
|
||||
repository: oci://repo.rre.nu/helm
|
||||
version: 1.0.0
|
||||
digest: sha256:96ab24bff7a4495ae492e87667724f179a244b08c648bf9405804c37e4a01364
|
||||
generated: "2024-10-18T15:37:35.457950145+02:00"
|
18
charts/node-red/Chart.yaml
Normal file
18
charts/node-red/Chart.yaml
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
apiVersion: v2
|
||||
name: node-red
|
||||
version: 1.0.0
|
||||
description: Node-RED is a flow-based programming tool, originally developed by IBM’s Emerging Technology Services team and now a part of the OpenJS Foundation.
|
||||
type: application
|
||||
appVersion: 4.0.5-22-minimal
|
||||
kubeVersion: ">=1.27.0"
|
||||
sources:
|
||||
- https://git.rre.nu/jonas/common-helm-lib
|
||||
- https://git.rre.nu/jonas/helm-charts
|
||||
maintainers:
|
||||
- name: Jonas Forsberg
|
||||
email: barregargamel@gmail.com
|
||||
dependencies:
|
||||
- name: lib
|
||||
repository: oci://repo.rre.nu/helm
|
||||
version: 1.0.0
|
BIN
charts/node-red/node-red-1.0.0.tgz
Normal file
BIN
charts/node-red/node-red-1.0.0.tgz
Normal file
Binary file not shown.
1
charts/node-red/templates/NOTES.txt
Normal file
1
charts/node-red/templates/NOTES.txt
Normal file
@ -0,0 +1 @@
|
||||
{{- include "lib.defaultNotes" . -}}
|
1
charts/node-red/templates/all.yaml
Normal file
1
charts/node-red/templates/all.yaml
Normal file
@ -0,0 +1 @@
|
||||
{{ include "lib.all" . }}
|
74
charts/node-red/values.yaml
Normal file
74
charts/node-red/values.yaml
Normal file
@ -0,0 +1,74 @@
|
||||
secrets:
|
||||
config:
|
||||
env: true
|
||||
enabled: false
|
||||
data:
|
||||
secret: dGVzdAo=
|
||||
blabla: dGVzdAo=
|
||||
stringData:
|
||||
USERNAME: foo
|
||||
PASSWORD: bar
|
||||
file:
|
||||
stringData:
|
||||
game.conf: "this is a long file"
|
||||
|
||||
configs:
|
||||
mariadb:
|
||||
enabled: false
|
||||
env: true
|
||||
data:
|
||||
ABC: 123
|
||||
file:
|
||||
data:
|
||||
file.txt: |
|
||||
this is a multi line
|
||||
file that should be mounted
|
||||
|
||||
|
||||
enva:
|
||||
- name: TESTING
|
||||
value: "kasll"
|
||||
|
||||
|
||||
namespace: kallekalas
|
||||
controller:
|
||||
enabled: true
|
||||
type: statefulset
|
||||
image:
|
||||
repository: docker.io/nodered/node-red
|
||||
pullPolicy:
|
||||
# Overrides the image tag whose default is the chart appVersion.
|
||||
tag: ""
|
||||
|
||||
service:
|
||||
main:
|
||||
enabled: false
|
||||
type: ClusterIP
|
||||
ports:
|
||||
http:
|
||||
port: 80
|
||||
targetPort: 1880
|
||||
protocol: HTTP
|
||||
ingress:
|
||||
enabled: false
|
||||
className: ""
|
||||
service: main
|
||||
annotations: {}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
- host: chart-example.local
|
||||
paths:
|
||||
- path: /
|
||||
pathType: ImplementationSpecific
|
||||
tls: []
|
||||
# - secretName: chart-example-tls
|
||||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
volumeClaimTemplates:
|
||||
- name: www
|
||||
mountPath: /var/www/html
|
||||
accessMode: "ReadWriteOnce"
|
||||
storageClassName: "local-path"
|
||||
size: 1Gi
|
6
charts/unifi/Chart.lock
Normal file
6
charts/unifi/Chart.lock
Normal file
@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: lib
|
||||
repository: file://../../../lib/
|
||||
version: 1.0.0
|
||||
digest: sha256:63e7ca30622b531017b921e041bc25280c0d53712af37f6e36aaa19f5a5a8f15
|
||||
generated: "2024-10-12T11:11:31.627097149+02:00"
|
15
charts/unifi/Chart.yaml
Normal file
15
charts/unifi/Chart.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
apiVersion: v2
|
||||
name: unifi
|
||||
version: 1.0.0
|
||||
description: The Unifi-network-application software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.
|
||||
type: application
|
||||
appVersion: v8.5.6
|
||||
kubeVersion: ">=1.27.0"
|
||||
maintainers:
|
||||
- name: Jonas Forsberg
|
||||
email: barregargamel@gmail.com
|
||||
dependencies:
|
||||
- name: lib
|
||||
repository: "file://../../../lib/"
|
||||
version: 1.0.0
|
BIN
charts/unifi/charts/lib-1.0.0.tgz
Normal file
BIN
charts/unifi/charts/lib-1.0.0.tgz
Normal file
Binary file not shown.
1
charts/unifi/templates/NOTES.txt
Normal file
1
charts/unifi/templates/NOTES.txt
Normal file
@ -0,0 +1 @@
|
||||
{{- include "lib.defaultNotes" . -}}
|
1
charts/unifi/templates/all.yaml
Normal file
1
charts/unifi/templates/all.yaml
Normal file
@ -0,0 +1 @@
|
||||
{{ include "lib.all" . }}
|
33
charts/unifi/values.yaml
Normal file
33
charts/unifi/values.yaml
Normal file
@ -0,0 +1,33 @@
|
||||
lib:
|
||||
|
||||
service:
|
||||
tcp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
ports:
|
||||
https:
|
||||
port: 8443
|
||||
protocol: TCP
|
||||
targetPort: 8443
|
||||
http_redirect:
|
||||
port: 8880
|
||||
protocol: TCP
|
||||
https_redirect:
|
||||
port: 8843
|
||||
protocol: TCP
|
||||
speed_test:
|
||||
port: 6789
|
||||
protocol: TCP
|
||||
udp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
ports:
|
||||
stun:
|
||||
port: 3478
|
||||
protocol: UDP
|
||||
device_discovery:
|
||||
port: 10001
|
||||
protocol: UDP
|
||||
local_discovery:
|
||||
port: 1900
|
||||
protocol: UDP
|
Loading…
Reference in New Issue
Block a user