add whodb
This commit is contained in:
@@ -450,6 +450,12 @@ homepage:
|
|||||||
href: https://pgadmin.alexlebens.net
|
href: https://pgadmin.alexlebens.net
|
||||||
siteMonitor: http://pgadmin.pgadmin:80
|
siteMonitor: http://pgadmin.pgadmin:80
|
||||||
statusStyle: dot
|
statusStyle: dot
|
||||||
|
- Database:
|
||||||
|
icon: sh-whodb.webp
|
||||||
|
description: WhoDB
|
||||||
|
href: https://whodb.alexlebens.net
|
||||||
|
siteMonitor: http://whodb.whodb:80
|
||||||
|
statusStyle: dot
|
||||||
- Secrets:
|
- Secrets:
|
||||||
icon: sh-hashicorp-vault.webp
|
icon: sh-hashicorp-vault.webp
|
||||||
description: Vault
|
description: Vault
|
||||||
|
@@ -153,6 +153,7 @@ blocky:
|
|||||||
tdarr IN CNAME traefik-cl01tl
|
tdarr IN CNAME traefik-cl01tl
|
||||||
tubearchivist IN CNAME traefik-cl01tl
|
tubearchivist IN CNAME traefik-cl01tl
|
||||||
vault IN CNAME traefik-cl01tl
|
vault IN CNAME traefik-cl01tl
|
||||||
|
whodb IN CNAME traefik-cl01tl
|
||||||
yamtrack IN CNAME traefik-cl01tl
|
yamtrack IN CNAME traefik-cl01tl
|
||||||
|
|
||||||
blocking:
|
blocking:
|
||||||
|
22
clusters/cl01tl/storage/whodb/Chart.yaml
Normal file
22
clusters/cl01tl/storage/whodb/Chart.yaml
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: whodb
|
||||||
|
version: 1.0.0
|
||||||
|
description: WhoDB
|
||||||
|
keywords:
|
||||||
|
- whodb
|
||||||
|
- postgresql
|
||||||
|
- database
|
||||||
|
home: https://wiki.alexlebens.dev/s/f329e026-7ade-4a3c-a5f1-1ac1492b9786
|
||||||
|
sources:
|
||||||
|
- https://github.com/clidey/whodb
|
||||||
|
- https://hub.docker.com/r/clidey/whodb
|
||||||
|
- https://github.com/bjw-s-labs/helm-charts/tree/main/charts/other/app-template
|
||||||
|
maintainers:
|
||||||
|
- name: alexlebens
|
||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
alias: whodb
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.0.1
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/selfhst/icons/png/whodb.png
|
||||||
|
appVersion: 0.53.0
|
28
clusters/cl01tl/storage/whodb/templates/http-route.yaml
Normal file
28
clusters/cl01tl/storage/whodb/templates/http-route.yaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
apiVersion: gateway.networking.k8s.io/v1
|
||||||
|
kind: HTTPRoute
|
||||||
|
metadata:
|
||||||
|
name: http-route-whodb
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: http-route-whodb
|
||||||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
app.kubernetes.io/part-of: {{ .Release.Name }}
|
||||||
|
spec:
|
||||||
|
parentRefs:
|
||||||
|
- group: gateway.networking.k8s.io
|
||||||
|
kind: Gateway
|
||||||
|
name: traefik-gateway
|
||||||
|
namespace: traefik
|
||||||
|
hostnames:
|
||||||
|
- whodb.alexlebens.net
|
||||||
|
rules:
|
||||||
|
- matches:
|
||||||
|
- path:
|
||||||
|
type: PathPrefix
|
||||||
|
value: /
|
||||||
|
backendRefs:
|
||||||
|
- group: ''
|
||||||
|
kind: Service
|
||||||
|
name: whodb
|
||||||
|
port: 80
|
||||||
|
weight: 100
|
29
clusters/cl01tl/storage/whodb/values.yaml
Normal file
29
clusters/cl01tl/storage/whodb/values.yaml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
whodb:
|
||||||
|
controllers:
|
||||||
|
main:
|
||||||
|
type: deployment
|
||||||
|
replicas: 1
|
||||||
|
strategy: Recreate
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
image:
|
||||||
|
repository: clidey/whodb
|
||||||
|
tag: 0.53.0
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
env:
|
||||||
|
- name: WHODB_OLLAMA_HOST
|
||||||
|
value: ollama-server-2.ollama
|
||||||
|
- name: WHODB_OLLAMA_PORT
|
||||||
|
value: 11434
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 256Mi
|
||||||
|
service:
|
||||||
|
main:
|
||||||
|
controller: main
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
|
port: 80
|
||||||
|
targetPort: 8080
|
||||||
|
protocol: TCP
|
@@ -128,6 +128,7 @@ customDNS:
|
|||||||
tdarr IN CNAME traefik-cl01tl
|
tdarr IN CNAME traefik-cl01tl
|
||||||
tubearchivist IN CNAME traefik-cl01tl
|
tubearchivist IN CNAME traefik-cl01tl
|
||||||
vault IN CNAME traefik-cl01tl
|
vault IN CNAME traefik-cl01tl
|
||||||
|
whodb IN CNAME traefik-cl01tl
|
||||||
yamtrack IN CNAME traefik-cl01tl
|
yamtrack IN CNAME traefik-cl01tl
|
||||||
|
|
||||||
blocking:
|
blocking:
|
||||||
|
@@ -128,6 +128,7 @@ customDNS:
|
|||||||
tdarr IN CNAME traefik-cl01tl
|
tdarr IN CNAME traefik-cl01tl
|
||||||
tubearchivist IN CNAME traefik-cl01tl
|
tubearchivist IN CNAME traefik-cl01tl
|
||||||
vault IN CNAME traefik-cl01tl
|
vault IN CNAME traefik-cl01tl
|
||||||
|
whodb IN CNAME traefik-cl01tl
|
||||||
yamtrack IN CNAME traefik-cl01tl
|
yamtrack IN CNAME traefik-cl01tl
|
||||||
|
|
||||||
blocking:
|
blocking:
|
||||||
|
Reference in New Issue
Block a user