mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8f5e148bb2 | ||
|
|
21262705a7 |
@@ -6,5 +6,5 @@ spec:
|
|||||||
environment: '{{ .Values.globals.environment }}'
|
environment: '{{ .Values.globals.environment }}'
|
||||||
redirectUris:
|
redirectUris:
|
||||||
- path: /api/auth/oidc/callback
|
- path: /api/auth/oidc/callback
|
||||||
subdomain: bytestash
|
subdomain: '{{ .Values.subdomain }}'
|
||||||
matchingMode: strict
|
matchingMode: strict
|
||||||
3
charts/apps/charts/gitea/Chart.yaml
Normal file
3
charts/apps/charts/gitea/Chart.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
version: 1.0.0
|
||||||
|
name: gitea
|
||||||
10
charts/apps/charts/gitea/templates/client.yaml
Normal file
10
charts/apps/charts/gitea/templates/client.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
apiVersion: homelab.mortenolsen.pro/v1
|
||||||
|
kind: OidcClient
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
environment: '{{ .Values.globals.environment }}'
|
||||||
|
redirectUris:
|
||||||
|
- path: /user/oauth2/Authentik/callback
|
||||||
|
subdomain: '{{ .Values.subdomain }}'
|
||||||
|
matchingMode: strict
|
||||||
96
charts/apps/charts/gitea/templates/deployment.yaml
Normal file
96
charts/apps/charts/gitea/templates/deployment.yaml
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: '{{ .Release.Name }}'
|
||||||
|
image: '{{ .Values.image.repository }}:{{ .Values.image.tag }}'
|
||||||
|
imagePullPolicy: '{{ .Values.image.pullPolicy }}'
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
containerPort: 3000
|
||||||
|
protocol: TCP
|
||||||
|
livenessProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: http
|
||||||
|
readinessProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: http
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /data
|
||||||
|
name: data
|
||||||
|
env:
|
||||||
|
- name: TZ
|
||||||
|
value: '{{ .Values.globals.timezone }}'
|
||||||
|
- name: USER_UID
|
||||||
|
value: '1000'
|
||||||
|
- name: USER_GID
|
||||||
|
value: '1000'
|
||||||
|
- name: GITEA__service__REQUIRE_EXTERNAL_REGISTRATION_PASSWORD
|
||||||
|
value: 'true'
|
||||||
|
- name: GITEA__service__ENABLE_BASIC_AUTHENTICATION
|
||||||
|
value: 'true'
|
||||||
|
- name: GITEA__service__ENABLE_PASSWORD_SIGNIN_FORM
|
||||||
|
value: 'false'
|
||||||
|
- name: GITEA__service__DEFAULT_KEEP_EMAIL_PRIVATE
|
||||||
|
value: 'true'
|
||||||
|
- name: GITEA__service__DEFAULT_USER_IS_RESTRICTED
|
||||||
|
value: 'true'
|
||||||
|
- name: GITEA__service__DEFAULT_USER_VISIBILITY
|
||||||
|
value: 'private'
|
||||||
|
- name: GITEA__service__DEFAULT_ORG_VISIBILITY
|
||||||
|
value: 'private'
|
||||||
|
- name: GITEA__service__ALLOW_ONLY_EXTERNAL_REGISTRATION
|
||||||
|
value: 'true'
|
||||||
|
- name: GITEA__other__SHOW_FOOTER_POWERED_BY
|
||||||
|
value: 'false'
|
||||||
|
- name: GITEA__other__SHOW_FOOTER_TEMPLATE_LOAD_TIME
|
||||||
|
value: 'false'
|
||||||
|
- name: GITEA__other__SHOW_FOOTER_VERSION
|
||||||
|
value: 'false'
|
||||||
|
- name: GITEA__repository__ENABLE_PUSH_CREATE_USER
|
||||||
|
value: 'true'
|
||||||
|
- name: GITEA__repository__ENABLE_PUSH_CREATE_ORG
|
||||||
|
value: 'true'
|
||||||
|
- name: GITEA__openid__ENABLE_OPENID_SIGNIN
|
||||||
|
value: 'false'
|
||||||
|
- name: GITEA__openid__ENABLE_OPENID_SIGNUP
|
||||||
|
value: 'false'
|
||||||
|
- name: GITEA__database__DB_TYPE
|
||||||
|
value: postgres
|
||||||
|
- name: GITEA__database__NAME
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: database
|
||||||
|
- name: GITEA__database__HOST
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: host
|
||||||
|
- name: GITEA__database__USER
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: user
|
||||||
|
- name: GITEA__database__PASSWD
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: password
|
||||||
|
volumes:
|
||||||
|
- name: data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: '{{ .Release.Name }}-data'
|
||||||
15
charts/apps/charts/gitea/templates/service.yaml
Normal file
15
charts/apps/charts/gitea/templates/service.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
labels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 3000
|
||||||
|
protocol: TCP
|
||||||
|
name: http
|
||||||
|
selector:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
8
charts/apps/charts/gitea/values.yaml
Normal file
8
charts/apps/charts/gitea/values.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
globals:
|
||||||
|
environment: prod
|
||||||
|
timezone: Europe/Amsterdam
|
||||||
|
image:
|
||||||
|
repository: docker.gitea.com/gitea
|
||||||
|
tag: latest
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
subdomain: gitea
|
||||||
3
charts/apps/charts/headscale/Chart.yaml
Normal file
3
charts/apps/charts/headscale/Chart.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
version: 1.0.0
|
||||||
|
name: headscale
|
||||||
10
charts/apps/charts/headscale/templates/client.yaml
Normal file
10
charts/apps/charts/headscale/templates/client.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
apiVersion: homelab.mortenolsen.pro/v1
|
||||||
|
kind: OidcClient
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
environment: '{{ .Values.globals.environment }}'
|
||||||
|
redirectUris:
|
||||||
|
- path: /oidc/callback
|
||||||
|
subdomain: '{{ .Values.subdomain }}'
|
||||||
|
matchingMode: strict
|
||||||
70
charts/apps/charts/headscale/templates/config-map.yaml
Normal file
70
charts/apps/charts/headscale/templates/config-map.yaml
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}-config-template'
|
||||||
|
data:
|
||||||
|
config.yaml.template: |
|
||||||
|
server_url: ${PUBLIC_URL}
|
||||||
|
listen_addr: 0.0.0.0:8080
|
||||||
|
metrics_listen_addr: 0.0.0.0:9090
|
||||||
|
grpc_listen_addr: 0.0.0.0:50443
|
||||||
|
|
||||||
|
private_key_path: /var/lib/headscale/private_key # Path inside the container
|
||||||
|
|
||||||
|
noise:
|
||||||
|
private_key_path: /var/lib/headscale/noise_private_key # Path inside the container
|
||||||
|
|
||||||
|
listen_routes: false
|
||||||
|
base_domain: "${PUBLIC_URL}" # For client routes and DNS push.
|
||||||
|
|
||||||
|
derp:
|
||||||
|
server:
|
||||||
|
enabled: false
|
||||||
|
region_id: 999
|
||||||
|
region_code: "headscale"
|
||||||
|
region_name: "Headscale Embedded DERP"
|
||||||
|
stun_listen_addr: "0.0.0.0:3478"
|
||||||
|
automatically_add_embedded_derp_region: true
|
||||||
|
urls:
|
||||||
|
- https://controlplane.tailscale.com/derpmap/default
|
||||||
|
auto_update_enabled: true
|
||||||
|
update_frequency: 24h
|
||||||
|
|
||||||
|
oidc:
|
||||||
|
enabled: true
|
||||||
|
only_start_if_oidc_is_available: true
|
||||||
|
issuer: "${OIDC_ISSUER_URL}"
|
||||||
|
client_id: "${OIDC_CLIENT_ID}"
|
||||||
|
client_secret: "${OIDC_CLIENT_SECRET}"
|
||||||
|
scopes: ["openid", "profile", "email"]
|
||||||
|
redirect_url: "${PUBLIC_URL}/oidc/callback"
|
||||||
|
pkce:
|
||||||
|
enabled: true
|
||||||
|
method: S256
|
||||||
|
|
||||||
|
|
||||||
|
# DNS configuration
|
||||||
|
dns:
|
||||||
|
magic_dns: false
|
||||||
|
override_local_dns: true # Push Headscale's DNS settings to clients
|
||||||
|
ttl: 60
|
||||||
|
nameservers:
|
||||||
|
global:
|
||||||
|
- 1.1.1.1 # Cloudflare DNS
|
||||||
|
#- 10.43.0.10 # Replace with your ClusterIP for kube-dns/CoreDNS
|
||||||
|
# Domains to search for (e.g., for Kubernetes services)
|
||||||
|
search_domains:
|
||||||
|
- svc.cluster.local
|
||||||
|
- cluster.local
|
||||||
|
|
||||||
|
auto_create_users: true
|
||||||
|
|
||||||
|
oidc_user_property: preferred_username # Or 'email' or 'sub'
|
||||||
|
|
||||||
|
prefixes:
|
||||||
|
v4: 10.20.20.0/24 # Example: A /24 subnet for your VPN clients
|
||||||
|
|
||||||
|
database:
|
||||||
|
type: sqlite
|
||||||
|
sqlite:
|
||||||
|
path: /var/lib/headscale/db.sqlite
|
||||||
97
charts/apps/charts/headscale/templates/deployment.yaml
Normal file
97
charts/apps/charts/headscale/templates/deployment.yaml
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
labels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
# To expose WireGuard UDP directly, we need a NodePort service.
|
||||||
|
# The Pod needs to be aware of the external port it's being exposed on.
|
||||||
|
# The easiest way to get WireGuard to listen on the correct port and make it
|
||||||
|
# externally accessible is to use `hostNetwork: true` for the UDP component,
|
||||||
|
# or by directly specifying the listen port in Headscale config if the NodePort is stable.
|
||||||
|
|
||||||
|
# OPTION 1: Best for simple homelab on bare metal where host network traffic isn't an issue
|
||||||
|
# hostNetwork: true # This makes the pod listen directly on the node's IPs
|
||||||
|
# dnsPolicy: ClusterFirstWithHostNet # Required if using hostNetwork
|
||||||
|
|
||||||
|
initContainers:
|
||||||
|
- name: generate-config
|
||||||
|
image: alpine/git # A small image with 'envsubst' available or easily installable
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
command: ['sh', '-c']
|
||||||
|
args:
|
||||||
|
- |
|
||||||
|
# Install envsubst if it's not present (alpine/git may not have it by default)
|
||||||
|
apk update && apk add bash gettext
|
||||||
|
|
||||||
|
# Substitute environment variables into the template
|
||||||
|
# The vars are passed via `env` section below
|
||||||
|
envsubst < /config-template/config.yaml.template > /etc/headscale/config.yaml
|
||||||
|
|
||||||
|
mkdir -p /etc/headscale
|
||||||
|
# Optional: Verify the generated config
|
||||||
|
echo "--- Generated Headscale Configuration ---"
|
||||||
|
cat /etc/headscale/config.yaml
|
||||||
|
echo "---------------------------------------"
|
||||||
|
env:
|
||||||
|
# These are the variables that `envsubst` will look for and replace
|
||||||
|
- name: PUBLIC_URL
|
||||||
|
value: 'https://{{ .Values.subdomain }}.olsen.cloud'
|
||||||
|
- name: OIDC_ISSUER_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-client'
|
||||||
|
key: configurationIssuer
|
||||||
|
- name: OIDC_CLIENT_ID
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-client'
|
||||||
|
key: clientId
|
||||||
|
- name: OIDC_CLIENT_SECRET
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-client'
|
||||||
|
key: clientSecret
|
||||||
|
# Add any other variables used in config.yaml.template here
|
||||||
|
volumeMounts:
|
||||||
|
- name: config-template
|
||||||
|
mountPath: /config-template # Mount the ConfigMap as a volume
|
||||||
|
readOnly: true
|
||||||
|
- name: headscale-config
|
||||||
|
mountPath: /etc/headscale # Destination for the generated config
|
||||||
|
|
||||||
|
containers:
|
||||||
|
- name: '{{ .Release.Name }}'
|
||||||
|
image: headscale/headscale:latest # Use the official image
|
||||||
|
command: ['headscale', 'serve']
|
||||||
|
ports:
|
||||||
|
- name: http-api
|
||||||
|
containerPort: 8080
|
||||||
|
protocol: TCP
|
||||||
|
- name: wireguard-udp
|
||||||
|
containerPort: 41641
|
||||||
|
protocol: UDP
|
||||||
|
volumeMounts:
|
||||||
|
- name: headscale-data
|
||||||
|
mountPath: /var/lib/headscale
|
||||||
|
- name: headscale-config
|
||||||
|
mountPath: /etc/headscale
|
||||||
|
volumes:
|
||||||
|
- name: config-template
|
||||||
|
configMap:
|
||||||
|
name: '{{ .Release.Name }}-config-template'
|
||||||
|
- name: headscale-config
|
||||||
|
emptyDir: {}
|
||||||
|
- name: headscale-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: '{{ .Release.Name }}-data'
|
||||||
19
charts/apps/charts/headscale/templates/service.yaml
Normal file
19
charts/apps/charts/headscale/templates/service.yaml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
labels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 8080
|
||||||
|
protocol: TCP
|
||||||
|
name: http
|
||||||
|
- name: wireguard-udp # TODO: should this be a LB service?
|
||||||
|
port: 41641
|
||||||
|
targetPort: 41641
|
||||||
|
protocol: UDP
|
||||||
|
selector:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
7
charts/apps/charts/headscale/values.yaml
Normal file
7
charts/apps/charts/headscale/values.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
globals:
|
||||||
|
environment: prod
|
||||||
|
image:
|
||||||
|
repository: headscale/headscale
|
||||||
|
tag: latest
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
subdomain: headscale
|
||||||
3
charts/apps/charts/metamcp/Chart.yaml
Normal file
3
charts/apps/charts/metamcp/Chart.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
version: 1.0.0
|
||||||
|
name: metamcp
|
||||||
6
charts/apps/charts/metamcp/templates/database.yaml
Normal file
6
charts/apps/charts/metamcp/templates/database.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: homelab.mortenolsen.pro/v1
|
||||||
|
kind: PostgresDatabase
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
environment: '{{ .Values.globals.environment }}'
|
||||||
79
charts/apps/charts/metamcp/templates/deployment.yaml
Normal file
79
charts/apps/charts/metamcp/templates/deployment.yaml
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: '{{ .Release.Name }}'
|
||||||
|
image: '{{ .Values.image.repository }}:{{ .Values.image.tag }}'
|
||||||
|
imagePullPolicy: '{{ .Values.image.pullPolicy }}'
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
containerPort: 12008
|
||||||
|
protocol: TCP
|
||||||
|
livenessProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: http
|
||||||
|
readinessProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: http
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /data
|
||||||
|
name: data
|
||||||
|
env:
|
||||||
|
- name: TZ
|
||||||
|
value: '{{ .Values.globals.timezone }}'
|
||||||
|
- name: APP_URL
|
||||||
|
value: https://metamcp.olsen.cloud # TODO: Change
|
||||||
|
- name: NEXT_PUBLIC_APP_URL
|
||||||
|
value: https://metamcp.olsen.cloud # TODO: Change
|
||||||
|
- name: BETTER_AUTH_SECRET
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-secrets'
|
||||||
|
key: betterauth
|
||||||
|
- name: DATABASE_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: url
|
||||||
|
- name: POSTGRES_DB
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: database
|
||||||
|
- name: POSTGRES_HOST
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: host
|
||||||
|
- name: POSTGRES_PORT
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: port
|
||||||
|
- name: POSTGRES_USER
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: user
|
||||||
|
- name: POSTGRES_PASSWORD
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: '{{ .Release.Name }}-pg-connection'
|
||||||
|
key: password
|
||||||
|
volumes:
|
||||||
|
- name: data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: '{{ .Release.Name }}-data'
|
||||||
9
charts/apps/charts/metamcp/templates/secret.yaml
Normal file
9
charts/apps/charts/metamcp/templates/secret.yaml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
apiVersion: homelab.mortenolsen.pro/v1
|
||||||
|
kind: GenerateSecret
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}-secrets'
|
||||||
|
spec:
|
||||||
|
fields:
|
||||||
|
- name: betterauth
|
||||||
|
encoding: base64
|
||||||
|
length: 64
|
||||||
15
charts/apps/charts/metamcp/templates/service.yaml
Normal file
15
charts/apps/charts/metamcp/templates/service.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
labels:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 12008
|
||||||
|
protocol: TCP
|
||||||
|
name: http
|
||||||
|
selector:
|
||||||
|
app: '{{ .Release.Name }}'
|
||||||
8
charts/apps/charts/metamcp/values.yaml
Normal file
8
charts/apps/charts/metamcp/values.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
globals:
|
||||||
|
environment: prod
|
||||||
|
timezone: Europe/Amsterdam
|
||||||
|
image:
|
||||||
|
repository: ghcr.io/metatool-ai/metamcp
|
||||||
|
tag: latest
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
subdomain: metamcp
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
apiVersion: homelab.mortenolsen.pro/v1
|
||||||
|
kind: ExternalHttpService
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
environment: '{{ .Values.globals.environment }}'
|
||||||
|
subdomain: '{{ .Values.subdomain }}'
|
||||||
|
destination:
|
||||||
|
host: '{{ .Release.Name }}.{{ .Release.Namespace }}.svc.cluster.local'
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
6
charts/apps/charts/n8n/templates/database.yaml
Normal file
6
charts/apps/charts/n8n/templates/database.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: homelab.mortenolsen.pro/v1
|
||||||
|
kind: PostgresDatabase
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
environment: '{{ .Values.globals.environment }}'
|
||||||
11
charts/apps/charts/n8n/templates/external-http-service.yaml
Normal file
11
charts/apps/charts/n8n/templates/external-http-service.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
apiVersion: homelab.mortenolsen.pro/v1
|
||||||
|
kind: ExternalHttpService
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
environment: '{{ .Values.globals.environment }}'
|
||||||
|
subdomain: '{{ .Values.subdomain }}'
|
||||||
|
destination:
|
||||||
|
host: '{{ .Release.Name }}.{{ .Release.Namespace }}.svc.cluster.local'
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
11
charts/apps/charts/n8n/templates/pvc.yaml
Normal file
11
charts/apps/charts/n8n/templates/pvc.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
kind: PersistentVolumeClaim
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}-data'
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- 'ReadWriteOnce'
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: '1Gi'
|
||||||
|
storageClassName: '{{ .Values.globals.environment }}'
|
||||||
11
charts/apps/charts/ollama/templates/pvc.yaml
Normal file
11
charts/apps/charts/ollama/templates/pvc.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
kind: PersistentVolumeClaim
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}-data'
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- 'ReadWriteOnce'
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: '1Gi'
|
||||||
|
storageClassName: '{{ .Values.globals.environment }}'
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
apiVersion: homelab.mortenolsen.pro/v1
|
||||||
|
kind: ExternalHttpService
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
spec:
|
||||||
|
environment: '{{ .Values.globals.environment }}'
|
||||||
|
subdomain: '{{ .Values.subdomain }}'
|
||||||
|
destination:
|
||||||
|
host: '{{ .Release.Name }}.{{ .Release.Namespace }}.svc.cluster.local'
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
11
charts/apps/charts/openwebui/templates/pvc.yaml
Normal file
11
charts/apps/charts/openwebui/templates/pvc.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
kind: PersistentVolumeClaim
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}-data'
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- 'ReadWriteOnce'
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: '1Gi'
|
||||||
|
storageClassName: '{{ .Values.globals.environment }}'
|
||||||
@@ -40,7 +40,7 @@ class GenerateSecret extends CustomResource<typeof specSchema> {
|
|||||||
...current,
|
...current,
|
||||||
};
|
};
|
||||||
|
|
||||||
await this.#secret.ensure(expected);
|
await this.#secret.set(expected);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ type SecretData = {
|
|||||||
database: string;
|
database: string;
|
||||||
host: string;
|
host: string;
|
||||||
port: string;
|
port: string;
|
||||||
|
url: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
const sanitizeName = (input: string) => {
|
const sanitizeName = (input: string) => {
|
||||||
@@ -87,15 +88,22 @@ class PostgresDatabase extends CustomResource<typeof specSchema> {
|
|||||||
throw new NotReadyError('MissingClusterSecret');
|
throw new NotReadyError('MissingClusterSecret');
|
||||||
}
|
}
|
||||||
|
|
||||||
await this.#secret.set(
|
const expected = {
|
||||||
(current) => ({
|
|
||||||
password: generateRandomHexPass(),
|
password: generateRandomHexPass(),
|
||||||
user: this.username,
|
user: this.username,
|
||||||
database: this.database,
|
database: this.database,
|
||||||
...current,
|
...this.#secret.value,
|
||||||
host: clusterSecret.host,
|
host: clusterSecret.host,
|
||||||
port: clusterSecret.port,
|
port: clusterSecret.port,
|
||||||
}),
|
};
|
||||||
|
|
||||||
|
const url = `postgresql://${expected.user}:${expected.password}@${expected.host}:${expected.port}/${expected.database}`;
|
||||||
|
|
||||||
|
await this.#secret.set(
|
||||||
|
{
|
||||||
|
...expected,
|
||||||
|
url,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
metadata: {
|
metadata: {
|
||||||
ownerReferences: [this.ref],
|
ownerReferences: [this.ref],
|
||||||
|
|||||||
Reference in New Issue
Block a user