2026-03-02 18:33:28 +00:00
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultAuth
|
|
|
|
|
metadata:
|
|
|
|
|
name: vso-auth
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
method: kubernetes
|
|
|
|
|
mount: kubernetes
|
|
|
|
|
kubernetes:
|
|
|
|
|
role: vso
|
|
|
|
|
serviceAccount: default
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: seaweedfs-s3-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: seaweedfs
|
|
|
|
|
refreshAfter: 30s
|
feat: La Suite email/messages, buildkitd, monitoring, vault and storage updates
- Add Messages (email) service: backend, frontend, MTA in/out, MPA, SOCKS
proxy, worker, DKIM config, and theme customization
- Add Collabora deployment for document collaboration
- Add Drive frontend nginx config and values
- Add buildkitd namespace for in-cluster container builds
- Add SeaweedFS remote sync and additional S3 buckets
- Update vault secrets across namespaces (devtools, lasuite, media,
monitoring, ory, storage) with expanded credential management
- Update monitoring: rename grafana→metrics OAuth2Client, add Prometheus
remote write and additional scrape configs
- Update local/production overlays with resource patches
- Remove stale login-ui resource patch from production overlay
2026-03-10 19:00:57 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: hive
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: people-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: people-celery-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: people-celery-beat
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-celery-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-y-provider
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: drive-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: drive-backend-celery-default
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: meet-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: meet-celery-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-worker
|
2026-03-20 13:41:54 +00:00
|
|
|
- kind: Deployment
|
|
|
|
|
name: projects
|
2026-03-02 18:33:28 +00:00
|
|
|
destination:
|
|
|
|
|
name: seaweedfs-s3-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
S3_ACCESS_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"access-key\" }}"
|
|
|
|
|
S3_SECRET_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"secret-key\" }}"
|
|
|
|
|
---
|
|
|
|
|
# Hive DB credentials from OpenBao database secrets engine (static role, 24h rotation).
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultDynamicSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: hive-db-url
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: database
|
|
|
|
|
path: static-creds/hive
|
2026-03-03 18:07:08 +00:00
|
|
|
allowStaticCreds: true
|
|
|
|
|
refreshAfter: 5m
|
2026-03-02 18:33:28 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: hive
|
|
|
|
|
destination:
|
|
|
|
|
name: hive-db-url
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
url:
|
|
|
|
|
text: "postgresql://{{ index .Secrets \"username\" }}:{{ index .Secrets \"password\" }}@postgres-rw.data.svc.cluster.local:5432/hive_db"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: hive-oidc
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: hive
|
|
|
|
|
refreshAfter: 30s
|
feat: La Suite email/messages, buildkitd, monitoring, vault and storage updates
- Add Messages (email) service: backend, frontend, MTA in/out, MPA, SOCKS
proxy, worker, DKIM config, and theme customization
- Add Collabora deployment for document collaboration
- Add Drive frontend nginx config and values
- Add buildkitd namespace for in-cluster container builds
- Add SeaweedFS remote sync and additional S3 buckets
- Update vault secrets across namespaces (devtools, lasuite, media,
monitoring, ory, storage) with expanded credential management
- Update monitoring: rename grafana→metrics OAuth2Client, add Prometheus
remote write and additional scrape configs
- Update local/production overlays with resource patches
- Remove stale login-ui resource patch from production overlay
2026-03-10 19:00:57 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: hive
|
2026-03-02 18:33:28 +00:00
|
|
|
destination:
|
|
|
|
|
name: hive-oidc
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
"client-id":
|
|
|
|
|
text: "{{ index .Secrets \"oidc-client-id\" }}"
|
|
|
|
|
"client-secret":
|
|
|
|
|
text: "{{ index .Secrets \"oidc-client-secret\" }}"
|
|
|
|
|
---
|
|
|
|
|
# People DB credentials from OpenBao database secrets engine (static role, 24h rotation).
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultDynamicSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: people-db-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: database
|
|
|
|
|
path: static-creds/people
|
2026-03-03 18:07:08 +00:00
|
|
|
allowStaticCreds: true
|
|
|
|
|
refreshAfter: 5m
|
2026-03-02 18:33:28 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: people-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: people-celery-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: people-celery-beat
|
|
|
|
|
destination:
|
|
|
|
|
name: people-db-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
password:
|
|
|
|
|
text: "{{ index .Secrets \"password\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: people-django-secret
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: people
|
|
|
|
|
refreshAfter: 30s
|
feat: La Suite email/messages, buildkitd, monitoring, vault and storage updates
- Add Messages (email) service: backend, frontend, MTA in/out, MPA, SOCKS
proxy, worker, DKIM config, and theme customization
- Add Collabora deployment for document collaboration
- Add Drive frontend nginx config and values
- Add buildkitd namespace for in-cluster container builds
- Add SeaweedFS remote sync and additional S3 buckets
- Update vault secrets across namespaces (devtools, lasuite, media,
monitoring, ory, storage) with expanded credential management
- Update monitoring: rename grafana→metrics OAuth2Client, add Prometheus
remote write and additional scrape configs
- Update local/production overlays with resource patches
- Remove stale login-ui resource patch from production overlay
2026-03-10 19:00:57 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: people-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: people-celery-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: people-celery-beat
|
2026-03-02 18:33:28 +00:00
|
|
|
destination:
|
|
|
|
|
name: people-django-secret
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
DJANGO_SECRET_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"django-secret-key\" }}"
|
feat(lasuite): deploy La Suite Docs (impress)
Adds the impress Helm chart (suitenumerique/docs, v4.5.0) to the lasuite
namespace with full Pingora routing, VSO secrets, and local overlay
resource tuning.
Routing (pingora-config.yaml):
- docs.* frontend -> docs-frontend:80 (nginx, static Next.js export)
- /api/* and /admin/* -> docs-backend:80 (Django/uvicorn)
- /collaboration/ws/* -> docs-y-provider:4444 (Hocuspocus WebSocket)
- integration.* -> integration:80 (La Gaufre hub, same file)
Secrets (vault-secrets.yaml):
- VaultDynamicSecret docs-db-credentials (DB engine, static role)
- VaultStaticSecret docs-django-secret (DJANGO_SECRET_KEY)
- VaultStaticSecret docs-collaboration-secret (y-provider shared secret)
OIDC client (oidc-clients.yaml):
- Fix redirect_uri from /oidc/callback/ to /api/v1.0/callback/ -- impress
mounts all OIDC URLs under api/{API_VERSION}/ via lasuite.oidc_login,
same pattern as people.
Local overlay (values-resources.yaml):
- docs-backend: 512Mi limit, WEB_CONCURRENCY=2 (4 uvicorn workers
exceeded 384Mi at startup on the arm64 Lima VM)
- docs-celery-worker: 384Mi limit, CELERY_WORKER_CONCURRENCY=2
- docs-y-provider: 256Mi limit
- seaweedfs-filer: raised from 256Mi to 512Mi (OOMKilled during 188MB
multipart S3 upload of impress-y-provider image layer)
Local overlay (kustomization.yaml):
- Image mirrors for impress-backend, impress-frontend, impress-y-provider
(amd64-only images retagged to Gitea via cmd_mirror before deploy)
2026-03-03 14:30:45 +00:00
|
|
|
---
|
|
|
|
|
# Docs DB credentials from OpenBao database secrets engine (static role, 24h rotation).
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultDynamicSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: docs-db-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: database
|
|
|
|
|
path: static-creds/docs
|
2026-03-03 18:07:08 +00:00
|
|
|
allowStaticCreds: true
|
|
|
|
|
refreshAfter: 5m
|
feat(lasuite): deploy La Suite Docs (impress)
Adds the impress Helm chart (suitenumerique/docs, v4.5.0) to the lasuite
namespace with full Pingora routing, VSO secrets, and local overlay
resource tuning.
Routing (pingora-config.yaml):
- docs.* frontend -> docs-frontend:80 (nginx, static Next.js export)
- /api/* and /admin/* -> docs-backend:80 (Django/uvicorn)
- /collaboration/ws/* -> docs-y-provider:4444 (Hocuspocus WebSocket)
- integration.* -> integration:80 (La Gaufre hub, same file)
Secrets (vault-secrets.yaml):
- VaultDynamicSecret docs-db-credentials (DB engine, static role)
- VaultStaticSecret docs-django-secret (DJANGO_SECRET_KEY)
- VaultStaticSecret docs-collaboration-secret (y-provider shared secret)
OIDC client (oidc-clients.yaml):
- Fix redirect_uri from /oidc/callback/ to /api/v1.0/callback/ -- impress
mounts all OIDC URLs under api/{API_VERSION}/ via lasuite.oidc_login,
same pattern as people.
Local overlay (values-resources.yaml):
- docs-backend: 512Mi limit, WEB_CONCURRENCY=2 (4 uvicorn workers
exceeded 384Mi at startup on the arm64 Lima VM)
- docs-celery-worker: 384Mi limit, CELERY_WORKER_CONCURRENCY=2
- docs-y-provider: 256Mi limit
- seaweedfs-filer: raised from 256Mi to 512Mi (OOMKilled during 188MB
multipart S3 upload of impress-y-provider image layer)
Local overlay (kustomization.yaml):
- Image mirrors for impress-backend, impress-frontend, impress-y-provider
(amd64-only images retagged to Gitea via cmd_mirror before deploy)
2026-03-03 14:30:45 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-celery-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-y-provider
|
|
|
|
|
destination:
|
|
|
|
|
name: docs-db-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
password:
|
|
|
|
|
text: "{{ index .Secrets \"password\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: docs-django-secret
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: docs
|
|
|
|
|
refreshAfter: 30s
|
feat: La Suite email/messages, buildkitd, monitoring, vault and storage updates
- Add Messages (email) service: backend, frontend, MTA in/out, MPA, SOCKS
proxy, worker, DKIM config, and theme customization
- Add Collabora deployment for document collaboration
- Add Drive frontend nginx config and values
- Add buildkitd namespace for in-cluster container builds
- Add SeaweedFS remote sync and additional S3 buckets
- Update vault secrets across namespaces (devtools, lasuite, media,
monitoring, ory, storage) with expanded credential management
- Update monitoring: rename grafana→metrics OAuth2Client, add Prometheus
remote write and additional scrape configs
- Update local/production overlays with resource patches
- Remove stale login-ui resource patch from production overlay
2026-03-10 19:00:57 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-celery-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-y-provider
|
feat(lasuite): deploy La Suite Docs (impress)
Adds the impress Helm chart (suitenumerique/docs, v4.5.0) to the lasuite
namespace with full Pingora routing, VSO secrets, and local overlay
resource tuning.
Routing (pingora-config.yaml):
- docs.* frontend -> docs-frontend:80 (nginx, static Next.js export)
- /api/* and /admin/* -> docs-backend:80 (Django/uvicorn)
- /collaboration/ws/* -> docs-y-provider:4444 (Hocuspocus WebSocket)
- integration.* -> integration:80 (La Gaufre hub, same file)
Secrets (vault-secrets.yaml):
- VaultDynamicSecret docs-db-credentials (DB engine, static role)
- VaultStaticSecret docs-django-secret (DJANGO_SECRET_KEY)
- VaultStaticSecret docs-collaboration-secret (y-provider shared secret)
OIDC client (oidc-clients.yaml):
- Fix redirect_uri from /oidc/callback/ to /api/v1.0/callback/ -- impress
mounts all OIDC URLs under api/{API_VERSION}/ via lasuite.oidc_login,
same pattern as people.
Local overlay (values-resources.yaml):
- docs-backend: 512Mi limit, WEB_CONCURRENCY=2 (4 uvicorn workers
exceeded 384Mi at startup on the arm64 Lima VM)
- docs-celery-worker: 384Mi limit, CELERY_WORKER_CONCURRENCY=2
- docs-y-provider: 256Mi limit
- seaweedfs-filer: raised from 256Mi to 512Mi (OOMKilled during 188MB
multipart S3 upload of impress-y-provider image layer)
Local overlay (kustomization.yaml):
- Image mirrors for impress-backend, impress-frontend, impress-y-provider
(amd64-only images retagged to Gitea via cmd_mirror before deploy)
2026-03-03 14:30:45 +00:00
|
|
|
destination:
|
|
|
|
|
name: docs-django-secret
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
DJANGO_SECRET_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"django-secret-key\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: docs-collaboration-secret
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: docs
|
|
|
|
|
refreshAfter: 30s
|
feat: La Suite email/messages, buildkitd, monitoring, vault and storage updates
- Add Messages (email) service: backend, frontend, MTA in/out, MPA, SOCKS
proxy, worker, DKIM config, and theme customization
- Add Collabora deployment for document collaboration
- Add Drive frontend nginx config and values
- Add buildkitd namespace for in-cluster container builds
- Add SeaweedFS remote sync and additional S3 buckets
- Update vault secrets across namespaces (devtools, lasuite, media,
monitoring, ory, storage) with expanded credential management
- Update monitoring: rename grafana→metrics OAuth2Client, add Prometheus
remote write and additional scrape configs
- Update local/production overlays with resource patches
- Remove stale login-ui resource patch from production overlay
2026-03-10 19:00:57 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: docs-y-provider
|
feat(lasuite): deploy La Suite Docs (impress)
Adds the impress Helm chart (suitenumerique/docs, v4.5.0) to the lasuite
namespace with full Pingora routing, VSO secrets, and local overlay
resource tuning.
Routing (pingora-config.yaml):
- docs.* frontend -> docs-frontend:80 (nginx, static Next.js export)
- /api/* and /admin/* -> docs-backend:80 (Django/uvicorn)
- /collaboration/ws/* -> docs-y-provider:4444 (Hocuspocus WebSocket)
- integration.* -> integration:80 (La Gaufre hub, same file)
Secrets (vault-secrets.yaml):
- VaultDynamicSecret docs-db-credentials (DB engine, static role)
- VaultStaticSecret docs-django-secret (DJANGO_SECRET_KEY)
- VaultStaticSecret docs-collaboration-secret (y-provider shared secret)
OIDC client (oidc-clients.yaml):
- Fix redirect_uri from /oidc/callback/ to /api/v1.0/callback/ -- impress
mounts all OIDC URLs under api/{API_VERSION}/ via lasuite.oidc_login,
same pattern as people.
Local overlay (values-resources.yaml):
- docs-backend: 512Mi limit, WEB_CONCURRENCY=2 (4 uvicorn workers
exceeded 384Mi at startup on the arm64 Lima VM)
- docs-celery-worker: 384Mi limit, CELERY_WORKER_CONCURRENCY=2
- docs-y-provider: 256Mi limit
- seaweedfs-filer: raised from 256Mi to 512Mi (OOMKilled during 188MB
multipart S3 upload of impress-y-provider image layer)
Local overlay (kustomization.yaml):
- Image mirrors for impress-backend, impress-frontend, impress-y-provider
(amd64-only images retagged to Gitea via cmd_mirror before deploy)
2026-03-03 14:30:45 +00:00
|
|
|
destination:
|
|
|
|
|
name: docs-collaboration-secret
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
secret:
|
|
|
|
|
text: "{{ index .Secrets \"collaboration-secret\" }}"
|
feat(infra): Meet integration, La Suite theming, Pingora SSH + meet routes
Meet: add backend/frontend/celery deployments and services, meet-config
ConfigMap, nginx SPA config, VSO secrets (meet-db-credentials VDS,
meet-django-secret and meet-livekit VSS). Wire oidc-meet OAuth2Client.
La Suite overlay discipline: move people/docs frontend nginx ConfigMaps
and patches from overlays/local to base so both environments share them.
Remove values-ory.yaml (folded into base). Add docs-frontend nginx config
with sub_filter theming. Add local gitea mkcert CA patch.
Pingora: add [ssh] TCP passthrough block (port 22 → Gitea SSH pod) and
split meet route into frontend default + backend paths for /api/, /admin/,
/oidc/, /static/, /__. Remove now-unused values-pingora.yaml from production
overlay (host ports moved to patch-pingora-hostport.yaml).
Update both overlay kustomizations to reference all new resources and
add meet-backend/meet-frontend image entries.
2026-03-06 12:08:21 +00:00
|
|
|
---
|
|
|
|
|
# Meet DB credentials from OpenBao database secrets engine (static role, 24h rotation).
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultDynamicSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: meet-db-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: database
|
|
|
|
|
path: static-creds/meet
|
|
|
|
|
allowStaticCreds: true
|
|
|
|
|
refreshAfter: 5m
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: meet-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: meet-celery-worker
|
|
|
|
|
destination:
|
|
|
|
|
name: meet-db-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
password:
|
|
|
|
|
text: "{{ index .Secrets \"password\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: meet-django-secret
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: meet
|
|
|
|
|
refreshAfter: 30s
|
feat: La Suite email/messages, buildkitd, monitoring, vault and storage updates
- Add Messages (email) service: backend, frontend, MTA in/out, MPA, SOCKS
proxy, worker, DKIM config, and theme customization
- Add Collabora deployment for document collaboration
- Add Drive frontend nginx config and values
- Add buildkitd namespace for in-cluster container builds
- Add SeaweedFS remote sync and additional S3 buckets
- Update vault secrets across namespaces (devtools, lasuite, media,
monitoring, ory, storage) with expanded credential management
- Update monitoring: rename grafana→metrics OAuth2Client, add Prometheus
remote write and additional scrape configs
- Update local/production overlays with resource patches
- Remove stale login-ui resource patch from production overlay
2026-03-10 19:00:57 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: meet-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: meet-celery-worker
|
feat(infra): Meet integration, La Suite theming, Pingora SSH + meet routes
Meet: add backend/frontend/celery deployments and services, meet-config
ConfigMap, nginx SPA config, VSO secrets (meet-db-credentials VDS,
meet-django-secret and meet-livekit VSS). Wire oidc-meet OAuth2Client.
La Suite overlay discipline: move people/docs frontend nginx ConfigMaps
and patches from overlays/local to base so both environments share them.
Remove values-ory.yaml (folded into base). Add docs-frontend nginx config
with sub_filter theming. Add local gitea mkcert CA patch.
Pingora: add [ssh] TCP passthrough block (port 22 → Gitea SSH pod) and
split meet route into frontend default + backend paths for /api/, /admin/,
/oidc/, /static/, /__. Remove now-unused values-pingora.yaml from production
overlay (host ports moved to patch-pingora-hostport.yaml).
Update both overlay kustomizations to reference all new resources and
add meet-backend/meet-frontend image entries.
2026-03-06 12:08:21 +00:00
|
|
|
destination:
|
|
|
|
|
name: meet-django-secret
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
DJANGO_SECRET_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"django-secret-key\" }}"
|
|
|
|
|
APPLICATION_JWT_SECRET_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"application-jwt-secret-key\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: meet-livekit
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: livekit
|
|
|
|
|
refreshAfter: 30s
|
feat: La Suite email/messages, buildkitd, monitoring, vault and storage updates
- Add Messages (email) service: backend, frontend, MTA in/out, MPA, SOCKS
proxy, worker, DKIM config, and theme customization
- Add Collabora deployment for document collaboration
- Add Drive frontend nginx config and values
- Add buildkitd namespace for in-cluster container builds
- Add SeaweedFS remote sync and additional S3 buckets
- Update vault secrets across namespaces (devtools, lasuite, media,
monitoring, ory, storage) with expanded credential management
- Update monitoring: rename grafana→metrics OAuth2Client, add Prometheus
remote write and additional scrape configs
- Update local/production overlays with resource patches
- Remove stale login-ui resource patch from production overlay
2026-03-10 19:00:57 +00:00
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: meet-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: meet-celery-worker
|
feat(infra): Meet integration, La Suite theming, Pingora SSH + meet routes
Meet: add backend/frontend/celery deployments and services, meet-config
ConfigMap, nginx SPA config, VSO secrets (meet-db-credentials VDS,
meet-django-secret and meet-livekit VSS). Wire oidc-meet OAuth2Client.
La Suite overlay discipline: move people/docs frontend nginx ConfigMaps
and patches from overlays/local to base so both environments share them.
Remove values-ory.yaml (folded into base). Add docs-frontend nginx config
with sub_filter theming. Add local gitea mkcert CA patch.
Pingora: add [ssh] TCP passthrough block (port 22 → Gitea SSH pod) and
split meet route into frontend default + backend paths for /api/, /admin/,
/oidc/, /static/, /__. Remove now-unused values-pingora.yaml from production
overlay (host ports moved to patch-pingora-hostport.yaml).
Update both overlay kustomizations to reference all new resources and
add meet-backend/meet-frontend image entries.
2026-03-06 12:08:21 +00:00
|
|
|
destination:
|
|
|
|
|
name: meet-livekit
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
LIVEKIT_API_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"api-key\" }}"
|
|
|
|
|
LIVEKIT_API_SECRET:
|
|
|
|
|
text: "{{ index .Secrets \"api-secret\" }}"
|
feat: La Suite email/messages, buildkitd, monitoring, vault and storage updates
- Add Messages (email) service: backend, frontend, MTA in/out, MPA, SOCKS
proxy, worker, DKIM config, and theme customization
- Add Collabora deployment for document collaboration
- Add Drive frontend nginx config and values
- Add buildkitd namespace for in-cluster container builds
- Add SeaweedFS remote sync and additional S3 buckets
- Update vault secrets across namespaces (devtools, lasuite, media,
monitoring, ory, storage) with expanded credential management
- Update monitoring: rename grafana→metrics OAuth2Client, add Prometheus
remote write and additional scrape configs
- Update local/production overlays with resource patches
- Remove stale login-ui resource patch from production overlay
2026-03-10 19:00:57 +00:00
|
|
|
---
|
|
|
|
|
# Drive DB credentials from OpenBao database secrets engine (static role, 24h rotation).
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultDynamicSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: drive-db-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: database
|
|
|
|
|
path: static-creds/drive
|
|
|
|
|
allowStaticCreds: true
|
|
|
|
|
refreshAfter: 5m
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: drive-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: drive-backend-celery-default
|
|
|
|
|
destination:
|
|
|
|
|
name: drive-db-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
password:
|
|
|
|
|
text: "{{ index .Secrets \"password\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: drive-django-secret
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: drive
|
|
|
|
|
refreshAfter: 30s
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: drive-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: drive-backend-celery-default
|
|
|
|
|
destination:
|
|
|
|
|
name: drive-django-secret
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
DJANGO_SECRET_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"django-secret-key\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: collabora-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: collabora
|
|
|
|
|
refreshAfter: 30s
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: collabora
|
|
|
|
|
destination:
|
|
|
|
|
name: collabora-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
username:
|
|
|
|
|
text: "{{ index .Secrets \"username\" }}"
|
|
|
|
|
password:
|
|
|
|
|
text: "{{ index .Secrets \"password\" }}"
|
|
|
|
|
---
|
|
|
|
|
# Messages DB credentials from OpenBao database secrets engine (static role, 24h rotation).
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultDynamicSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: messages-db-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: database
|
|
|
|
|
path: static-creds/messages
|
|
|
|
|
allowStaticCreds: true
|
|
|
|
|
refreshAfter: 5m
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-worker
|
|
|
|
|
destination:
|
|
|
|
|
name: messages-db-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
password:
|
|
|
|
|
text: "{{ index .Secrets \"password\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: messages-django-secret
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: messages
|
|
|
|
|
refreshAfter: 30s
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-mta-in
|
|
|
|
|
destination:
|
|
|
|
|
name: messages-django-secret
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
DJANGO_SECRET_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"django-secret-key\" }}"
|
|
|
|
|
SALT_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"salt-key\" }}"
|
|
|
|
|
MDA_API_SECRET:
|
|
|
|
|
text: "{{ index .Secrets \"mda-api-secret\" }}"
|
|
|
|
|
OIDC_STORE_REFRESH_TOKEN_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"oidc-refresh-token-key\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: messages-dkim-key
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: messages
|
|
|
|
|
refreshAfter: 30s
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-mpa
|
|
|
|
|
destination:
|
|
|
|
|
name: messages-dkim-key
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
dkim-private-key:
|
|
|
|
|
text: "{{ index .Secrets \"dkim-private-key\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: messages-mpa-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: messages
|
|
|
|
|
refreshAfter: 30s
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-mpa
|
|
|
|
|
destination:
|
|
|
|
|
name: messages-mpa-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
RSPAMD_password:
|
|
|
|
|
text: "{{ index .Secrets \"rspamd-password\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: messages-socks-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: messages
|
|
|
|
|
refreshAfter: 30s
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-socks-proxy
|
|
|
|
|
destination:
|
|
|
|
|
name: messages-socks-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
PROXY_USERS:
|
|
|
|
|
text: "{{ index .Secrets \"socks-proxy-users\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: messages-mta-out-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: messages
|
|
|
|
|
refreshAfter: 30s
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: messages-mta-out
|
|
|
|
|
destination:
|
|
|
|
|
name: messages-mta-out-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
SMTP_USERNAME:
|
|
|
|
|
text: "{{ index .Secrets \"mta-out-smtp-username\" }}"
|
|
|
|
|
SMTP_PASSWORD:
|
|
|
|
|
text: "{{ index .Secrets \"mta-out-smtp-password\" }}"
|
2026-03-18 18:36:05 +00:00
|
|
|
---
|
|
|
|
|
# Calendars DB credentials from OpenBao database secrets engine (static role, 24h rotation).
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultDynamicSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: calendars-db-credentials
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: database
|
|
|
|
|
path: static-creds/calendars
|
|
|
|
|
allowStaticCreds: true
|
|
|
|
|
refreshAfter: 5m
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: calendars-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: calendars-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: calendars-caldav
|
|
|
|
|
destination:
|
|
|
|
|
name: calendars-db-credentials
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
password:
|
|
|
|
|
text: "{{ index .Secrets \"password\" }}"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: calendars-django-secret
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: calendars
|
|
|
|
|
refreshAfter: 30s
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: calendars-backend
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: calendars-worker
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: calendars-caldav
|
|
|
|
|
destination:
|
|
|
|
|
name: calendars-django-secret
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
DJANGO_SECRET_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"django-secret-key\" }}"
|
|
|
|
|
SALT_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"salt-key\" }}"
|
|
|
|
|
CALDAV_INBOUND_API_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"caldav-inbound-api-key\" }}"
|
|
|
|
|
CALDAV_OUTBOUND_API_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"caldav-outbound-api-key\" }}"
|
|
|
|
|
CALDAV_INTERNAL_API_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"caldav-internal-api-key\" }}"
|
2026-03-20 13:41:54 +00:00
|
|
|
---
|
|
|
|
|
# Projects DB credentials from OpenBao database secrets engine (static role, 24h rotation).
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultDynamicSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: projects-db-url
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: database
|
|
|
|
|
path: static-creds/projects
|
|
|
|
|
allowStaticCreds: true
|
|
|
|
|
refreshAfter: 5m
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: projects
|
|
|
|
|
destination:
|
|
|
|
|
name: projects-db-url
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
url:
|
|
|
|
|
text: "postgresql://{{ index .Secrets \"username\" }}:{{ index .Secrets \"password\" }}@postgres-rw.data.svc.cluster.local:5432/projects_db"
|
|
|
|
|
---
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: projects-app-secrets
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: projects
|
|
|
|
|
refreshAfter: 30s
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: projects
|
|
|
|
|
destination:
|
|
|
|
|
name: projects-app-secrets
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
SECRET_KEY:
|
|
|
|
|
text: "{{ index .Secrets \"secret-key\" }}"
|
|
|
|
|
---
|
|
|
|
|
# Postfix DKIM signing key from OpenBao KV.
|
|
|
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
|
|
|
kind: VaultStaticSecret
|
|
|
|
|
metadata:
|
|
|
|
|
name: postfix-dkim
|
|
|
|
|
namespace: lasuite
|
|
|
|
|
spec:
|
|
|
|
|
vaultAuthRef: vso-auth
|
|
|
|
|
mount: secret
|
|
|
|
|
type: kv-v2
|
|
|
|
|
path: postfix-dkim
|
|
|
|
|
refreshAfter: 1h
|
|
|
|
|
rolloutRestartTargets:
|
|
|
|
|
- kind: Deployment
|
|
|
|
|
name: postfix
|
|
|
|
|
destination:
|
|
|
|
|
name: postfix-dkim
|
|
|
|
|
create: true
|
|
|
|
|
overwrite: true
|
|
|
|
|
transformation:
|
|
|
|
|
excludeRaw: true
|
|
|
|
|
templates:
|
|
|
|
|
private.key:
|
|
|
|
|
text: "{{ index .Secrets \"private-key\" }}"
|
|
|
|
|
selector:
|
|
|
|
|
text: "{{ index .Secrets \"selector\" }}"
|