apps/meet: fix secretRef required fields
This commit is contained in:
parent
d270f6b305
commit
095c0e6321
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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}"
|
|
@ -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
|
||||
|
|
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: gatus
|
||||
version: 1.0 # TODO
|
||||
version: 3.4.1
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: minicloudlabs
|
||||
|
|
Loading…
Reference in New Issue