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.
52 lines
1.5 KiB
YAML
52 lines
1.5 KiB
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: lasuite
|
|
|
|
resources:
|
|
- namespace.yaml
|
|
- postfix-deployment.yaml
|
|
- hive-config.yaml
|
|
- hive-deployment.yaml
|
|
- hive-service.yaml
|
|
- seaweedfs-buckets.yaml
|
|
- shared-config.yaml
|
|
- oidc-clients.yaml
|
|
- vault-secrets.yaml
|
|
- integration-deployment.yaml
|
|
- people-frontend-nginx-configmap.yaml
|
|
- docs-frontend-nginx-configmap.yaml
|
|
- meet-config.yaml
|
|
- meet-backend-deployment.yaml
|
|
- meet-backend-service.yaml
|
|
- meet-celery-worker-deployment.yaml
|
|
- meet-frontend-nginx-configmap.yaml
|
|
- meet-frontend-deployment.yaml
|
|
- meet-frontend-service.yaml
|
|
|
|
patches:
|
|
# Rewrite hardcoded production integration URL + inject theme CSS in people-frontend
|
|
- path: patch-people-frontend-nginx.yaml
|
|
# Inject theme CSS in docs-frontend
|
|
- path: patch-docs-frontend-nginx.yaml
|
|
|
|
# La Suite Numérique Helm charts.
|
|
# Charts with a published Helm repo use helmCharts below.
|
|
# find has no published repo yet — deploy manually when OpenSearch is ready.
|
|
helmCharts:
|
|
# helm repo add people https://suitenumerique.github.io/people/
|
|
- name: desk
|
|
repo: https://suitenumerique.github.io/people/
|
|
version: "0.0.7"
|
|
releaseName: people
|
|
namespace: lasuite
|
|
valuesFile: people-values.yaml
|
|
|
|
# helm repo add docs https://suitenumerique.github.io/docs/
|
|
- name: docs
|
|
repo: https://suitenumerique.github.io/docs/
|
|
version: "4.5.0"
|
|
releaseName: docs
|
|
namespace: lasuite
|
|
valuesFile: docs-values.yaml
|