diff --git a/apps/meet/calcom-kustomization.yaml b/apps/meet/calcom-kustomization.yaml
index cef0880cb0dedd10ed7de13857225b5e5dd9a916..7fd0742f52ec8ed25ac8639f58773d8f2c0b5e48 100644
--- a/apps/meet/calcom-kustomization.yaml
+++ b/apps/meet/calcom-kustomization.yaml
@@ -26,6 +26,8 @@ spec:
         name: stackspin-cluster-variables
       - kind: ConfigMap
         name: stackspin-calcom-kustomization-variables
+      - kind: Secret
+        name: stackspin-calcom-variables
       # OIDC
       - kind: Secret
         name: stackspin-calcom-oauth-variables
diff --git a/apps/meet/calcom-secrets/calcom-keys.yaml b/apps/meet/calcom-secrets/calcom-keys.yaml
deleted file mode 100644
index 9f7587479018dcb29eb591bd1f04990448b5fc70..0000000000000000000000000000000000000000
--- a/apps/meet/calcom-secrets/calcom-keys.yaml
+++ /dev/null
@@ -1,11 +0,0 @@
-apiVersion: secretgenerator.mittwald.de/v1alpha1
-kind: StringSecret
-metadata:
-  name: stackspin-calcom-keys
-  namespace: stackspout
-spec:
-  # DATABASE_URL
-  # NEXT_PUBLIC_WEBAPP_URL
-  fields:
-  - fieldName: NEXTAUTH_SECRET
-  - fieldName: CALENDSO_ENCRYPTION_KEY
diff --git a/apps/meet/calcom-secrets/calcom-postgres.yaml b/apps/meet/calcom-secrets/calcom-postgres.yaml
deleted file mode 100644
index c3065e40e4e37a64ead3b7a390beb0be58999242..0000000000000000000000000000000000000000
--- a/apps/meet/calcom-secrets/calcom-postgres.yaml
+++ /dev/null
@@ -1,9 +0,0 @@
-apiVersion: secretgenerator.mittwald.de/v1alpha1
-kind: StringSecret
-metadata:
-  name: stackspin-calcom-postgres
-  namespace: stackspout
-spec:
-  fields:
-  - fieldName: password
-  - fieldName: postgres-password
diff --git a/apps/meet/calcom-secrets/calcom-variables.yaml b/apps/meet/calcom-secrets/calcom-variables.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..56c6692056357616ad0a3a63691e26ac995578a0
--- /dev/null
+++ b/apps/meet/calcom-secrets/calcom-variables.yaml
@@ -0,0 +1,11 @@
+apiVersion: secretgenerator.mittwald.de/v1alpha1
+kind: StringSecret
+metadata:
+  name: stackspin-calcom-variables
+  namespace: flux-system
+spec:
+  fields:
+  - fieldName: postgresql_password
+  - fieldName: postgresql_postgres_password
+  - fieldName: nextauth_secret
+  - fieldName: calendso_key
diff --git a/apps/meet/calcom/calcom-keys.yaml b/apps/meet/calcom/calcom-keys.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d137cf0fe905b17720e1f1f53950a510beef55a0
--- /dev/null
+++ b/apps/meet/calcom/calcom-keys.yaml
@@ -0,0 +1,11 @@
+apiVersion: v1
+kind: Secret
+metadata:
+  name: stackspin-calcom-keys
+  namespace: stackspout
+type: Opaque
+data:
+  DATABASE_URL: "postgresql://calcom:${postgresql_password}@calcom-postgresql/calcom"
+  NEXT_PUBLIC_WEBAPP_URL: "https://${calcom_domain}"
+  NEXTAUTH_SECRET: "${nextauth_secret}"
+  CALENDSO_ENCRYPTION_KEY: "${calendso_key}"
diff --git a/apps/meet/calcom/calcom-values-configmap.yaml b/apps/meet/calcom/calcom-values-configmap.yaml
index 58b2b6db0281fad7b59c8665d81b8a01d2c79b66..aa087c88769814c955dd1e569b4f25ef7d198e6f 100644
--- a/apps/meet/calcom/calcom-values-configmap.yaml
+++ b/apps/meet/calcom/calcom-values-configmap.yaml
@@ -14,7 +14,8 @@ data:
       auth:
         database: calcom
         username: calcom
-        existingSecret: "stackspin-calcom-postgres"
+        password: "${postgresql_password}"
+        postgresPassword: "${postgresql_postgres_password}"
       primary:
         persistence:
           existingClaim: calcom-postgres
diff --git a/apps/status/gatus/gatus-release.yaml b/apps/status/gatus/gatus-release.yaml
index be81437f7d35e8686bc8ce6db6ac3207405cec1c..290f3dcc8784c02f803ef385868be35d7da30c19 100644
--- a/apps/status/gatus/gatus-release.yaml
+++ b/apps/status/gatus/gatus-release.yaml
@@ -8,7 +8,7 @@ spec:
   chart:
     spec:
       chart: gatus
-      version: 1.0 # TODO
+      version: 3.4.1
       sourceRef:
         kind: HelmRepository
         name: minicloudlabs