Compare commits
9 Commits
848cfcbde0
...
release
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d1baa0f2a | ||
| 3b2b38b625 | |||
| b88b13ef16 | |||
| bc36b67320 | |||
| 869ff82875 | |||
| 2a17d50122 | |||
| 22bb54a0e2 | |||
| 1ac2f62082 | |||
|
|
8776b21515 |
24
CHANGELOG.md
24
CHANGELOG.md
@@ -1,3 +1,27 @@
|
||||
# [0.24.0](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.23.0...0.24.0) (2026-04-12)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add notes ([869ff82](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/869ff82875c2ab9d030767e480896b29b1056f02))
|
||||
* add notes ([1ac2f62](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/1ac2f62082d180d42a4baf9b330b67b3483b7a64))
|
||||
* add notes to all applications ([3b2b38b](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/3b2b38b6256fbd699ce7fa5521b43761c6c6a9ed))
|
||||
* add rybbit tracking ([bc36b67](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/bc36b67320b1f515a70ad4e338ce7549a153a8b6))
|
||||
* remove csp ([b88b13e](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/b88b13ef1693610b06c5e99dc8906b215a5fda40))
|
||||
|
||||
# [0.23.0](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.22.0...0.23.0) (2026-04-10)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **deps:** update dependency astro to v6.1.5 ([b49be7b](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/b49be7bc09918c8c39572cabd903e3f73a2ef6a3))
|
||||
* wrong source ([ddc7ec3](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/ddc7ec300859240497cc65070d253ba02b794b06))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* remove dep-track ([357eaf3](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/357eaf37eda2b9558b49292970f7765f07ece0c1))
|
||||
|
||||
# [0.22.0](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.21.0...0.22.0) (2026-04-08)
|
||||
|
||||
|
||||
|
||||
@@ -16,14 +16,22 @@ const getSiteURL = () => {
|
||||
export default defineConfig({
|
||||
site: getSiteURL(),
|
||||
|
||||
security: { csp: true },
|
||||
|
||||
prefetch: true,
|
||||
|
||||
integrations: [
|
||||
sitemap(),
|
||||
starlight({
|
||||
title: "Alex Lebens Docs",
|
||||
head: [
|
||||
{
|
||||
tag: 'script',
|
||||
attrs: {
|
||||
src: 'https://rybbit.alexlebens.dev/api/script.js',
|
||||
'data-site-id': 'a8768eb5f5ff',
|
||||
defer: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
customCss: [
|
||||
'./src/styles/custom.css',
|
||||
],
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "site-documentation",
|
||||
"type": "module",
|
||||
"version": "0.22.0",
|
||||
"version": "0.24.0",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"build": "astro build",
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/democratic-csi-synology-iscsi
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Storage provider for iSCSI block devices from the NAS.
|
||||
|
||||
# Notes
|
||||
|
||||
Used for applications that need to store a lot of data, but not over the NFS connection. Examples include metrics and logging storage.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/descheduler
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit9jt9odji8a?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Automated service that balances pods across the nodes according to configuration.
|
||||
|
||||
# Notes
|
||||
|
||||
Mostly used to balance number of pods. Current limit is set to 200 which is nearly twice the defaults, but this can sometimes be met during reboots during upgrades as pods are evicted. Then this will balance out one all nodes are healthy again.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/directus
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Content Management System tightly coupled to [my personal site](https://docs.alexlebens.dev/applications/site-profile/).
|
||||
|
||||
# Notes
|
||||
|
||||
Most information is stored here and accessed at build time. Webhook setup so when I publish a blog post here it will initiate a new build of the image.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/elastic-operator
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Operator to deploy and manage Elasticsearch instances.
|
||||
|
||||
# Notes
|
||||
|
||||
Easier to manage then just deploying Helm Charts. Mostly used for [TubeArchivist](https://docs.alexlebens.dev/applications/tubearchivist/).
|
||||
|
||||
@@ -17,3 +17,11 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [chat.alexlebens.dev](https://chat.alexlebens.dev)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Front end web client for Matrix servers.
|
||||
|
||||
# Notes
|
||||
|
||||
Provides front end for [Matrix-Synapse](https://docs.alexlebens.dev/applications/matrix-synapse/)
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/eraser
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Automatic service that cleans up local caches of images.
|
||||
|
||||
# Notes
|
||||
|
||||
Removes all non running images. This does cause a startup delay, but [Harbor](https://docs.alexlebens.dev/applications/harbor/) is configured as a generic pull through cache, so pulls for new images should be quick.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/excalidraw
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Used to make diagrams and other sketches.
|
||||
|
||||
# Notes
|
||||
|
||||
Mostly used in blog posts and documentation.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/external-dns
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit9l1ay5qm8c?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Makes DNS entries of Kubernetes resources into an external DNS provider.
|
||||
|
||||
# Notes
|
||||
|
||||
Blocky can't be configured this way, so I am exploring other options to use this automation. But it is currently setup to configure the Ubiquity devices.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/external-secrets
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/cfit9lr0c2e4ga?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Very useful, decalarative way to make Kubernetes Secrets from an external provider.
|
||||
|
||||
# Notes
|
||||
|
||||
Secrets come from [Vault](https://docs.alexlebens.dev/applications/vault/).
|
||||
|
||||
@@ -17,3 +17,11 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [art.alexlebens.dev](https://art.alexlebens.dev)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
View pictures I have collected that are not photos I have taken myself.
|
||||
|
||||
# Notes
|
||||
|
||||
Setup to provide all the collections of public domain images I have. Mostly from various art museums.
|
||||
|
||||
@@ -17,3 +17,11 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [rss.alexlebens.dev](https://rss.alexlebens.dev)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
RSS reader for various news sites as well as software releases.
|
||||
|
||||
# Notes
|
||||
|
||||
A little finicky to setup, predates popular use of containers, but still functions quite well. I mostly use it with an Android app.
|
||||
|
||||
@@ -13,3 +13,21 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/garage
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/cfit8jm3mwk5cd?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Clustered S3 storage provider.
|
||||
|
||||
# Notes
|
||||
|
||||
Considering moving to the [operator](https://github.com/rajsinghtech/garage-operator), but currently deploys as chart.
|
||||
|
||||
Backing storage comes from [iSCSI](https://docs.alexlebens.dev/applications/democratic-csi-synology-iscsi/).
|
||||
|
||||
Primary endpoint for most S3 targets, alongside PiBox and Digital Ocean.
|
||||
|
||||
[Rclone](https://docs.alexlebens.dev/applications/rclone/) handles any kind of syncing to the other endpoints as needed.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/gatus
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/bfit9mmwvmqrkf?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Uptime and down notifications for all endpoints, both local and public.
|
||||
|
||||
# Notes
|
||||
|
||||
All declarative configuration, will end notifications using [ntfy](https://docs.alexlebens.dev/applications/ntfy/).
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/generic-device-plugin
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Plugin used to give devices to pods, specifically tun devices for networking.
|
||||
|
||||
# Notes
|
||||
|
||||
Used by recomendation in [Tailscale Docs](https://docs.siderolabs.com/kubernetes-guides/advanced-guides/device-plugins).
|
||||
|
||||
@@ -17,3 +17,15 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [gitea.alexlebens.dev](https://gitea.alexlebens.dev)</Aside>
|
||||
|
||||
<Aside>This collects analytics and sent to Rybbit at [rybbit.alexlebens.dev](https://rybbit.alexlebens.dev/)</Aside>
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/dfit89k7khk3kc?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Git repoistory for storing all my code.
|
||||
|
||||
# Notes
|
||||
|
||||
Primary code repo, repositories set to replicate to a PiBox as well as Github for a layer of backup.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/grafana-operator
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/ffit9nnrapou8d?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Operator to declaratively make Grafana dashboards.
|
||||
|
||||
# Notes
|
||||
|
||||
Uses the dashboard json in [grafana-dashboards](https://gitea.alexlebens.dev/alexlebens/grafana-dashboards].
|
||||
|
||||
@@ -13,3 +13,13 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/grimmory
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Store and provide books.
|
||||
|
||||
# Notes
|
||||
|
||||
Used to be called 'Booklore'.
|
||||
|
||||
Only app that uses [MariaDB](https://docs.alexlebens.dev/applications/mariadb-operator/).
|
||||
|
||||
@@ -13,3 +13,17 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/harbor
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit9ofndecjkd?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Pull through cache and registry for personal images built in Gitea.
|
||||
|
||||
# Notes
|
||||
|
||||
Talos is configured to direct pulls to Docker, Github, and others to Harbor first. Stores these images as a cache to avoid rate limiting, primarily by Docker hub.
|
||||
|
||||
Any of my own images also get stored here to deploy.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/headlamp
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Dashboard for Kubernetes.
|
||||
|
||||
# Notes
|
||||
|
||||
I also use the desktop app which is identical.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/home-assistant
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Home automation, connecting to various IoT devices through Zigbee, Matter, etc.
|
||||
|
||||
# Notes
|
||||
|
||||
Currently unused.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/homepage
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Provides links and status dots for all deployed apps.
|
||||
|
||||
# Notes
|
||||
|
||||
Do not set to RollingUpdate or use multiple replicas. Has some kind of loading issue when doing so.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/houndarr
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Manages automatic upgrades for content in the Servarr apps.
|
||||
|
||||
# Notes
|
||||
|
||||
Set and forget, runs as a service in the background.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/immich
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/bfit80bb45csgb?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Alternative to Google Photos, stores all my photos.
|
||||
|
||||
# Notes
|
||||
|
||||
Photos are stored internally, though a full copy is also kept on the NAS.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/intel-device-plugin
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Used to give pods access to host GPUs. Primarily for video and the QuickSync feature.
|
||||
|
||||
# Notes
|
||||
|
||||
Just works in the background.
|
||||
|
||||
@@ -13,3 +13,17 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/jellyfin
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit8116thywwd?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Provides video, such as movies and shows.
|
||||
|
||||
# Notes
|
||||
|
||||
A little finicky and not as polished as Plex, but open source and supports plugins.
|
||||
|
||||
Planned migration to PostgreSQL when feature is supported.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/jellystat
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Monitors and provides stats for Jellyfin.
|
||||
|
||||
# Notes
|
||||
|
||||
Mostly just runs in the background. Stats for size of library and most recently added are the most useful. Jellyfin's 'recently added' doesn't work that well.
|
||||
|
||||
@@ -17,3 +17,13 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [karakeep.alexlebens.dev](https://karakeep.alexlebens.dev)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Organizes and tags bookmarks.
|
||||
|
||||
# Notes
|
||||
|
||||
Used to be called 'Hoarder', new name is better.
|
||||
|
||||
Connect to [Ollama](https://docs.alexlebens.dev/applications/ollama/) for using AI to generate the tags.
|
||||
|
||||
@@ -13,3 +13,14 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/kiwix
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Local copies of various wikis and other datasets.
|
||||
|
||||
# Notes
|
||||
|
||||
Full backups, including images, of Wikipedia.
|
||||
|
||||
[qBittorrent](https://docs.alexlebens.dev/applications/qbittorrent/) has a category that will download the Kiwix files into the directory it reads from.
|
||||
|
||||
|
||||
@@ -13,3 +13,13 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/komodo
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Manages deployments of single nodes hosts with docker compose stacks.
|
||||
|
||||
# Notes
|
||||
|
||||
Manual setup, but follows Gitops with webhook triggered updates from Gitea.
|
||||
|
||||
Compose files are placed in [infrastructure](https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/hosts) under the hosts dir.
|
||||
|
||||
@@ -13,3 +13,21 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/kube-prometheus-stack
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/dfit8q7ooq7eod?orgId=1).</Aside>
|
||||
|
||||
<Aside type="tip">AirGradient has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/ffit86ggcrxtse?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Community managed and combined stack for Prometheus metrics. Also includes alerting.
|
||||
|
||||
# Notes
|
||||
|
||||
Metrics are stored on iSCSI, retention is 45 days.
|
||||
|
||||
Sends alert notifications through [ntfy](https://docs.alexlebens.dev/applications/ntfy/).
|
||||
|
||||
Scrapping for targets outside of cluster has their ServiceMonitors placed in this chart, such as for IoT devices.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/kubelet-serving-cert-approver
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Service that runs in the background, approves certificates generated by the kubelet.
|
||||
|
||||
# Notes
|
||||
|
||||
Mostly just used for cluster first install or when certs are renewed to ensure access.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/kubernetes-cloudflare-ddns
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Updates the IP address for Cloudflare domains.
|
||||
|
||||
# Notes
|
||||
|
||||
Cloudflare manages the domains for alexlebens.net, this ensures that the IP address the domain points to is the one assigned by the ISP to the home/network device.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/languagetool
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Provides higher level grammer and spell checking service.
|
||||
|
||||
# Notes
|
||||
|
||||
Used by Zettlr and a web browser extension.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/libation
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Monitors and downloads copies of audiobooks from Audible.
|
||||
|
||||
# Notes
|
||||
|
||||
Downloads into the NAS directory that [Audiobookshelf](https://docs.alexlebens.dev/applications/audiobookshelf) reads from.
|
||||
|
||||
@@ -13,3 +13,13 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/lidarr
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Servarr app that manages the metadata and organization of music.
|
||||
|
||||
# Notes
|
||||
|
||||
Connects to [qbittorrent](https://docs.alexlebens.dev/applications/qbittorrent), [slskd](https://docs.alexlebens.dev/applications/slskd) with support from [prowlarr](https://docs.alexlebens.dev/applications/prowlarr) and [unpackerr](https://docs.alexlebens.dev/applications/unpackerr).
|
||||
|
||||
Runs on nightly branch to integrate plugins.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/local-path-provisioner
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Storage for paths on the local node's NVME drive. When high performance, but non redundant storage is required.
|
||||
|
||||
# Notes
|
||||
|
||||
Primarily used by the databases, PostgreSQL and MariaDB, since they have internal clustering and increasing their read/write speeds is very beneficial.
|
||||
|
||||
@@ -13,3 +13,19 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/loki
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit8khiifnr4b?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Collects logs from pods and makes them availabile in Grafana.
|
||||
|
||||
# Notes
|
||||
|
||||
Uses iSCSI for log storage.
|
||||
|
||||
Generally unused as I inspect most logs in [ArgoCD](https://docs.alexlebens.dev/applications/argo-cd/) or [Headlamp](https://docs.alexlebens.dev/applications/headlamp/). But this does keep them for longer rentention.
|
||||
|
||||
Maybe someday will integrate AI from [Ollama](https://docs.alexlebens.dev/applications/ollama/) to monitor and report on logs.
|
||||
|
||||
@@ -13,3 +13,13 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/mariadb-operator
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Operator that manages deployments of MariaDB.
|
||||
|
||||
# Notes
|
||||
|
||||
Very durable, survives and heals from several node outages.
|
||||
|
||||
Only really used for [Grimmory](https://docs.alexlebens.dev/applications/grimmory) though.
|
||||
|
||||
@@ -17,3 +17,13 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [matrix.alexlebens.dev](https://matrix.alexlebens.dev)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Secure and encrypted chat service.
|
||||
|
||||
# Notes
|
||||
|
||||
Very difficult to maintain, especially with encryption.
|
||||
|
||||
Used mostly for bridging Discord and WhatsApp.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/mediaLyze
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Monitors and provides stats for media libraries.
|
||||
|
||||
# Notes
|
||||
|
||||
Kind of neat to see the stats, but haven't found much purpose outside of curiosity.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/metrics-server
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Core Kubernetes service that provides basic metrics on cpu, memory, and disk that is used by Kubernetes for tooling such as scaling. Also what is seen in [Headlamp](https://docs.alexlebens.dev/applications/headlamp) for live stats.
|
||||
|
||||
# Notes
|
||||
|
||||
Like some other services, it happily runs in the background without trouble.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/music-grabber
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
An alternative to [yubal](https://docs.alexlebens.dev/applications/yubal), it collects music as directed.
|
||||
|
||||
# Notes
|
||||
|
||||
Unused currently.
|
||||
|
||||
@@ -13,3 +13,17 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/navidrome
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/bfit82l8b0gsgf?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Music server that uses the subsonic protocol.
|
||||
|
||||
# Notes
|
||||
|
||||
Chart also deploys a webclient of [Feishin](https://github.com/jeffvli/feishin), but I mostly use the desktop app. On Android I use [Symfonium](https://symfonium.app/).
|
||||
|
||||
While I can use [Jellyfin](https://docs.alexlebens.dev/applications/jellyfin) for music, I prefer separation for dedicated media types.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/node-feature-discovery
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Background service that adds labels to nodes based on detected hardware features.
|
||||
|
||||
# Notes
|
||||
|
||||
Used in conjunction with nodeAffinity and other scheduling configuration to assign pods to the capable nodes.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/ntfy
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/cfit8bbhovsw0d?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Notification service based on a Pub/Sub model.
|
||||
|
||||
# Notes
|
||||
|
||||
Very useful service that sends notifications to my phone and is widely addopted by a lot of other apps or has bridging support such as through [apprise](https://github.com/caronc/apprise).
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/ollama
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Local AI servers.
|
||||
|
||||
# Notes
|
||||
|
||||
[Open WebUI](https://github.com/open-webui/open-webui) frontend.
|
||||
|
||||
Configured mostly to run the Gemma models.
|
||||
|
||||
Tailscale connction to the desktop GPU for larger model processing.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/omni-tools
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
A variety of useful tools for random things. No need to search obscure websites or download various different apps.
|
||||
|
||||
# Notes
|
||||
|
||||
The hardest part is remembering the things it can do. Images, video, audio, text, math, etc.
|
||||
|
||||
@@ -17,3 +17,13 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [outline.alexlebens.dev](https://outline.alexlebens.dev)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
A more featured version of a wiki with similarities to Notion.
|
||||
|
||||
# Notes
|
||||
|
||||
Used to use Outline in before transitioning to this docs site.
|
||||
|
||||
Backup in case I want to migrate away from Capacities. I prefer the object types in Capacities, but can work too.
|
||||
|
||||
@@ -13,3 +13,17 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/paperless-ngx
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Documentation organizer.
|
||||
|
||||
# Notes
|
||||
|
||||
Designed to scan in and run OCR on files, as well as upload digital documents.
|
||||
|
||||
Based around tagging instead of folders.
|
||||
|
||||
Haven't begun to use, but I expect it to be useful.
|
||||
|
||||
Need to ensure backups are good and proper first.
|
||||
|
||||
@@ -13,3 +13,13 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/plex
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Closed source media provider.
|
||||
|
||||
# Notes
|
||||
|
||||
Very easy to use, so kept running in case of sharing to others.
|
||||
|
||||
Primarily migrated over to [Jellyfin](https://docs.alexlebens.dev/applications/jellyfin).
|
||||
|
||||
@@ -17,3 +17,13 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [postiz.alexlebens.dev](https://postiz.alexlebens.dev)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Automates social media posting.
|
||||
|
||||
# Notes
|
||||
|
||||
So dumb and complex to setup, has hard dependency on [Temporal](https://github.com/temporalio).
|
||||
|
||||
Haven't begun to use, but want to connect to automate posting of my blog.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/prowlarr
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Manages and automates configuration of trackers for the Servarr instances.
|
||||
|
||||
# Notes
|
||||
|
||||
Setup once here and all the others work.
|
||||
|
||||
@@ -13,3 +13,17 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/qbittorrent
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/ffit8c6tqrxfkc?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Main torrent client.
|
||||
|
||||
# Notes
|
||||
|
||||
Runs behind [gluetun](https://github.com/qdm12/gluetun).
|
||||
|
||||
Both [qbit-manage](https://github.com/StuffAnThings/qbit_manage) and [qui](https://github.com/autobrr/qui) running alongside to automate management of the files. Both of these have dramatically reduced time spent maintaining this.
|
||||
|
||||
@@ -22,3 +22,19 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/radarr-standup
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/cfit83kzzx6v4a?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Manages metadata for movies.
|
||||
|
||||
# Notes
|
||||
|
||||
Should rarely be access, manage through [Seerr](https://docs.alexlebens.dev/applications/seerr/)
|
||||
|
||||
Connects to [qbittorrent](https://docs.alexlebens.dev/applications/qbittorrent) with support from [prowlarr](https://docs.alexlebens.dev/applications/prowlarr) and [unpackerr](https://docs.alexlebens.dev/applications/unpackerr).
|
||||
|
||||
4 separate instances for different media types.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/rclone
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Syncs data in S3 buckets.
|
||||
|
||||
# Notes
|
||||
|
||||
Syncs bucket from in cluster [Garage](https://docs.alexlebens.dev/applications/garage/) to remote or Digital Ocean.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/reloader
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Simple service that will ensure a restart of services if their mounted ConfigMaps change.
|
||||
|
||||
# Notes
|
||||
|
||||
Used by a few apps, such as homepage where its entirely configured by ConfigMap.
|
||||
|
||||
@@ -13,3 +13,21 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/rook-ceph
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Ceph Dashboard](https://ceph.alexlebens.net/).</Aside>
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit8gbo47pc0b?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Clustered storage that runs on the SSDs in cluster to provide durable and reliable block and filesystem volumes.
|
||||
|
||||
# Notes
|
||||
|
||||
Runs [Ceph](https://ceph.io/en/) underneath and managed by Rook pods.
|
||||
|
||||
Ensure this system is healthy before any upgrades and restarts.
|
||||
|
||||
One of the main pressures to increase node count to expand host and disk count of this cluster for more space as well as durabiliy during node outages.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/roundcube
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Internal client for email.
|
||||
|
||||
# Notes
|
||||
|
||||
Connected to [Stalwart](https://docs.alexlebens.dev/applications/stalwart/).
|
||||
|
||||
Generally unsued as I have not configured any services for sending email.
|
||||
|
||||
This is NOT used for external email, such as gmail.
|
||||
|
||||
@@ -17,3 +17,11 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [rybbit.alexlebens.dev](https://rybbit.alexlebens.dev)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Analytics service for my websites.
|
||||
|
||||
# Notes
|
||||
|
||||
Pretty dashboard to let me know that literally no one looks at my sites.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/s3-exporter
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/dfit8d7qtq4u8e?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Provides metrics of my S3 buckets.
|
||||
|
||||
# Notes
|
||||
|
||||
Mostly to monitor storage consumption.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/searxng
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Web search with privacy features.
|
||||
|
||||
# Notes
|
||||
|
||||
Connected to Firefox as my default search engine.
|
||||
|
||||
Also connected to Ollama for AI to conduct web search.
|
||||
|
||||
Updates based on latest digest.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/seerr
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Frontend to manage media requests for Servarr.
|
||||
|
||||
# Notes
|
||||
|
||||
Recently updated as a merger from Overseer and Jellyseer.
|
||||
|
||||
Pending integration of [Lidarr](https://docs.alexlebens.dev/applications/lidarr/), currently just for the [Radarr](https://docs.alexlebens.dev/applications/radarr/) and [Sonarr](https://docs.alexlebens.dev/applications/sonarr/) services.
|
||||
|
||||
Credentials are from [Jellyfin](https://docs.alexlebens.dev/applications/jellyfin/).
|
||||
|
||||
@@ -13,3 +13,13 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/shelfmark
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Collection of books.
|
||||
|
||||
# Notes
|
||||
|
||||
Uploads to [Grimmory](https://docs.alexlebens.dev/applications/grimmory/) and [Audiobookshelf](https://docs.alexlebens.dev/applications/audiobookshelf/)
|
||||
|
||||
Gets help from [qBittorrent](https://docs.alexlebens.dev/applications/qbittorrent/)
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/shelly-plug
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit87jux375sa?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Metrics from the Shelly Plug.
|
||||
|
||||
# Notes
|
||||
|
||||
Can provide historical wattage use of the shelly plug which the entire homelab's electricity passes through.
|
||||
|
||||
@@ -17,3 +17,17 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [docs.alexlebens.dev](https://docs.alexlebens.dev)</Aside>
|
||||
|
||||
<Aside>This collects analytics and sent to Rybbit at [rybbit.alexlebens.dev](https://rybbit.alexlebens.dev/)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Hosts documentation for the cluster.
|
||||
|
||||
# Notes
|
||||
|
||||
It this very site!
|
||||
|
||||
Built with Astro and Starlight.
|
||||
|
||||
Documentation is written in MDX.
|
||||
|
||||
@@ -17,3 +17,15 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [www.alexlebens.dev](https://www.alexlebens.dev)</Aside>
|
||||
|
||||
<Aside>This collects analytics and sent to Rybbit at [rybbit.alexlebens.dev](https://rybbit.alexlebens.dev/)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Profile and blog website
|
||||
|
||||
# Notes
|
||||
|
||||
Built with Astro.
|
||||
|
||||
Connects to [Directus](https://docs.alexlebens.dev/applications/directus) during build for content.
|
||||
|
||||
@@ -17,3 +17,13 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [www.saralebens.com](https://www.saralebens.com)</Aside>
|
||||
|
||||
<Aside>This collects analytics and sent to Rybbit at [rybbit.alexlebens.dev](https://rybbit.alexlebens.dev/)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Profile website for Sara Lebens.
|
||||
|
||||
# Notes
|
||||
|
||||
Built with Astro.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/slskd
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Discovers music.
|
||||
|
||||
# Notes
|
||||
|
||||
Works in collaboration with [Lidarr](https://docs.alexlebens.dev/applications/lidarr).
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/snapshot-controller
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Controls snapshots of storage.
|
||||
|
||||
# Notes
|
||||
|
||||
[Rook Ceph](https://docs.alexlebens.dev/applications/rook-ceph) supports snapshots and is used by [Volsync](https://docs.alexlebens.dev/applications/volsync) for creating backups.
|
||||
|
||||
@@ -19,3 +19,19 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/sonarr-anime
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/cfit84mdyfldsd?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Manages metadata for tv shows.
|
||||
|
||||
# Notes
|
||||
|
||||
Should rarely be access, manage through [Seerr](https://docs.alexlebens.dev/applications/seerr/)
|
||||
|
||||
Connects to [qbittorrent](https://docs.alexlebens.dev/applications/qbittorrent) with support from [prowlarr](https://docs.alexlebens.dev/applications/prowlarr) and [unpackerr](https://docs.alexlebens.dev/applications/unpackerr).
|
||||
|
||||
3 separate instances for different media types.
|
||||
|
||||
@@ -13,3 +13,16 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/speedtest-exporter
|
||||
icon: right-arrow
|
||||
---
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="danger">Do not run this too frequently as it consumes large amounts of data to run the test.</Aside>
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit9pt05wa2of?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Tests internet speed and generates metrics.
|
||||
|
||||
# Notes
|
||||
|
||||
Exports metrics to Prometheus.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/stack
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
[App of Apps](https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#app-of-apps) Application to manage deployments through [ArgoCD](https://docs.alexlebens.dev/applications/argo-cd/).
|
||||
|
||||
# Notes
|
||||
|
||||
Be very, very careful making changes. Consider this the 'root' for all deployments.
|
||||
|
||||
@@ -13,3 +13,13 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/stalwart
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Email server.
|
||||
|
||||
# Notes
|
||||
|
||||
Configuration seems to be only through UI.
|
||||
|
||||
Not currently used.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/tailscale-operator
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Operator to manage [Tailscale](https://tailscale.com/) inside the cluster.
|
||||
|
||||
# Notes
|
||||
|
||||
Manages the main subnet router, provides inter workload connections, allows access to the tailnet from inside the cluster, among other features.
|
||||
|
||||
@@ -13,3 +13,17 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/talos
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">etcd has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/efit8ig3fljb4c?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Automated tooling for managing the host OS.
|
||||
|
||||
# Notes
|
||||
|
||||
Runs backups of the etcd database for disaster recovery.
|
||||
|
||||
Runs regular defragmentation of etcd.
|
||||
|
||||
@@ -13,3 +13,17 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/tdarr
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/ffit9qzig6w3ke?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Runs healthchecks on media files.
|
||||
|
||||
# Notes
|
||||
|
||||
Need to check the error queue, sometimes there are false errors.
|
||||
|
||||
Runs the files through ffmpeg on either cpu or gpu, but gpu generates more false errors.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/traefik
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/cfit9rqyd179cb?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Gateway for the cluster, enables external access of the webpages for both host routing and TLS.
|
||||
|
||||
# Notes
|
||||
|
||||
Really want to swap it out for Cillium's built in Gateway implementation.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/tubearchivist
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Archives Youtube videos.
|
||||
|
||||
# Notes
|
||||
|
||||
Mostly to ensure I get to keep videos that may be deleted or removed from Youtube. Also for videos I want to save to watch locally.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/unpackerr
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/bfit8ehwuxwcgc?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Unpacks files.
|
||||
|
||||
# Notes
|
||||
|
||||
Some people like to make their files bundled in a zip or tar or something. This makes those not so.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/unpoller
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/dfit7x7j3g2kgd?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Geneates metrics from the Ubqituiy network devices.
|
||||
|
||||
# Notes
|
||||
|
||||
I usually just go to the UniFi page, but this is useful for historical analysis.
|
||||
|
||||
@@ -13,3 +13,19 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/vault
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/bfit8f62ducjkd?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Secrets manager.
|
||||
|
||||
# Notes
|
||||
|
||||
Retrieved by [External Secrets](https://docs.alexlebens.dev/applications/external-secrets/) for making them availible in cluster.
|
||||
|
||||
Can store other secrets, but primarily used for cluster secrets.
|
||||
|
||||
And by 'secrets' this means passwords, keys, etc, that are confidential and non public.
|
||||
|
||||
@@ -17,3 +17,13 @@ hero:
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside>This app has public facing endpoint, at [passwords.alexlebens.dev](https://passwords.alexlebens.dev)</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Passwords manager.
|
||||
|
||||
# Notes
|
||||
|
||||
Sync to browser and Android app. Can also store passkeys, but that defeats their purpose.
|
||||
|
||||
Very critical to keep backups of.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/version-checker
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit948exm8zkf?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Watches for updates to version of images inside the cluster.
|
||||
|
||||
# Notes
|
||||
|
||||
Used as a backup and validation of Renovate's checks.
|
||||
|
||||
@@ -13,3 +13,15 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/volsync
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
<Aside type="tip">Has an internal [Grafana Dashboard](https://grafana.alexlebens.net/goto/afit97jgz4740b?orgId=1).</Aside>
|
||||
|
||||
# Purpose
|
||||
|
||||
Backups Persistent Volumes to S3.
|
||||
|
||||
# Notes
|
||||
|
||||
Used in conjunction with [this chart](https://gitea.alexlebens.dev/alexlebens/helm-charts/src/branch/main/charts/volsync-target) as an easy way to add backups to any PVC.
|
||||
|
||||
@@ -13,3 +13,13 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/whodb
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Frontend to inspect PostgreSQL databases.
|
||||
|
||||
# Notes
|
||||
|
||||
Used if I need to see specific data or manipulate the database content.
|
||||
|
||||
Has AI features, but I don't know why.
|
||||
|
||||
@@ -13,3 +13,13 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/yamtrack
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Tracks media.
|
||||
|
||||
# Notes
|
||||
|
||||
Hooks into [Jellyfin](https://docs.alexlebens.dev/applications/jellyfin).
|
||||
|
||||
Also where I keep my watch list.
|
||||
|
||||
@@ -13,3 +13,11 @@ hero:
|
||||
link: https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/clusters/cl01tl/helm/yubal
|
||||
icon: right-arrow
|
||||
---
|
||||
|
||||
# Purpose
|
||||
|
||||
Collects music.
|
||||
|
||||
# Notes
|
||||
|
||||
Places it into [Navidrome](https://docs.alexlebens.dev/applications/navidrome/)
|
||||
|
||||
Reference in New Issue
Block a user