mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
✨ new talos cluster
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
---
|
||||
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
name: healthchecks
|
||||
namespace: default
|
||||
spec:
|
||||
values:
|
||||
env:
|
||||
REGENERATE_SETTINGS: "True"
|
||||
EMAIL_USE_TLS: "True"
|
||||
ALLOWED_HOSTS: "*"
|
||||
DEBUG: "False"
|
||||
DB: postgres
|
||||
DB_HOST: postgres-rw.default.svc.cluster.local.
|
||||
DB_PORT: 5432
|
||||
DB_NAME: healthchecks
|
||||
SITE_ROOT: "https://healthchecks.${SECRET_CLUSTER_DOMAIN}"
|
||||
SITE_NAME: "HealthChecks"
|
||||
SITE_LOGO_URL: "https://healthchecks.io/static/img/logo-rounded-ua.svg"
|
@@ -0,0 +1,31 @@
|
||||
---
|
||||
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
name: healthchecks
|
||||
namespace: default
|
||||
spec:
|
||||
values:
|
||||
initContainers:
|
||||
init-db:
|
||||
image: ghcr.io/onedr0p/postgres-initdb:14.5
|
||||
env:
|
||||
- name: POSTGRES_HOST
|
||||
value: postgres-rw.default.svc.cluster.local.
|
||||
- name: POSTGRES_DB
|
||||
value: healthchecks
|
||||
- name: POSTGRES_SUPER_PASS
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: postgres-superuser
|
||||
key: password
|
||||
- name: POSTGRES_USER
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: healthchecks
|
||||
key: DB_USER
|
||||
- name: POSTGRES_PASS
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: healthchecks
|
||||
key: DB_PASSWORD
|
Reference in New Issue
Block a user