From 7da7ae809643ba9e47f0ae43562794b36464ccf4 Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 7 Jun 2026 12:52:04 +0500 Subject: [PATCH] ++ --- apps/workspaces/brusnika-prod/api.yaml | 183 ++++++++++++++++++ apps/workspaces/brusnika-prod/frontend.yaml | 109 +++++++++++ .../brusnika-prod/kustomization.yaml | 7 + clusters/brusnika-prod/kustomization.yaml | 3 +- 4 files changed, 301 insertions(+), 1 deletion(-) create mode 100644 apps/workspaces/brusnika-prod/api.yaml create mode 100644 apps/workspaces/brusnika-prod/frontend.yaml create mode 100644 apps/workspaces/brusnika-prod/kustomization.yaml diff --git a/apps/workspaces/brusnika-prod/api.yaml b/apps/workspaces/brusnika-prod/api.yaml new file mode 100644 index 0000000..9744ea6 --- /dev/null +++ b/apps/workspaces/brusnika-prod/api.yaml @@ -0,0 +1,183 @@ +apiVersion: helm.toolkit.fluxcd.io/v2 +kind: HelmRelease +metadata: + name: workspaces-api + namespace: workspaces + +spec: + interval: 10m + + chart: + spec: + chart: universal-chart + version: "0.1.7" + sourceRef: + kind: HelmRepository + name: yc-oci-charts + namespace: flux-system + interval: 10m + + install: + remediation: + retries: 3 + + upgrade: + remediation: + retries: 3 + + values: + global: + env: _default + + services: + backend: + enabled: true + + image: + name: + _default: cr.yandex/crp3ccidau046kdj8g9q/workspaces:production_bfd943b2 + pullPolicy: + _default: IfNotPresent + + deployment: + enabled: true + + name: + _default: workspaces-api + + replicaCount: + _default: 1 + stage: 1 + preprod: 3 + production: 3 + + port: + _default: 8000 + command: + _default: + - /bin/bash + - -ec + args: + _default: + - | + set -euo pipefail + /migrations migrate + /api + + + probes: + liveness: + enabled: false + readiness: + enabled: false + + service: + enabled: true + + name: + _default: workspaces-service + + type: + _default: ClusterIP + + port: + _default: 8000 + + targetPort: + _default: 8000 + + portName: + _default: http + + imagePullSecrets: + enabled: + _default: true + name: + _default: regcred + + labels: + monitoring: prometheus + envs: + - name: POSTGRES_ADDRESS + value: + _default: "postgres-service" + + - name: POSTGRES_PORT + value: + _default: "5432" + + - name: POSTGRES_DB + value: + _default: "workspaces_db" + + - name: POSTGRES_POOL_SIZE + value: + _default: "3" + + - name: BUNDLES_RETRY_COUNT + value: + _default: "5" + + - name: BUNDLES_NJOBS + value: + _default: "5" + + - name: API_ADDRESS + value: + _default: "0.0.0.0:8000" + + - name: NAMESPACE + value: + _default: "workspaces" + + - name: ENABLE_SQL_QUERY + value: + _default: "0" + + - name: ENABLE_SSL + value: + _default: "0" + + - name: DOCUMENTATION_HOST + value: + _default: "https://cde.brusnika.ru/documentations" + + - name: DOCUMENTATION_LOGGER_FEATURE + value: + _default: "0" + + - name: DOCUMENTATION_ORIGINATOR + value: + _default: "prod_ws" + + - name: ENVIRONMENT + value: + _default: "prod" + + - name: DJANGO_HOST + value: + _default: "http://backend.django.svc.cluster.local:8000" + + - name: DJANGO_ORIGINATOR + value: + _default: "docs_prod" + secretEnvs: + - name: POSTGRES_USER + secretName: + _default: "postgres-secret" + secretKey: "username" + + - name: POSTGRES_PASSWORD + secretName: + _default: "postgres-secret" + secretKey: "password" + + - name: DJANGO_BASIC_AUTH + secretName: + _default: "django-auth" + secretKey: "key" + + commitSha: "" + gitlabUri: "" + gitlabJobUrl: "" + owner: "" \ No newline at end of file diff --git a/apps/workspaces/brusnika-prod/frontend.yaml b/apps/workspaces/brusnika-prod/frontend.yaml new file mode 100644 index 0000000..9fd335a --- /dev/null +++ b/apps/workspaces/brusnika-prod/frontend.yaml @@ -0,0 +1,109 @@ +apiVersion: helm.toolkit.fluxcd.io/v2 +kind: HelmRelease +metadata: + name: workspaces-v2-frontend-static + namespace: workspaces + +spec: + interval: 10m + + chart: + spec: + chart: universal-chart + version: "0.1.7" + sourceRef: + kind: HelmRepository + name: yc-oci-charts + namespace: flux-system + interval: 10m + + install: + remediation: + retries: 3 + + upgrade: + remediation: + retries: 3 + + values: + global: + env: _default + + services: + frontend: + enabled: true + + image: + name: + _default: cr.yandex/crp3ccidau046kdj8g9q/workspaces-v2-frontend:contour_8b87e5b0 + pullPolicy: + _default: IfNotPresent + + deployment: + enabled: true + + name: + _default: workspaces-v2-frontend-static + + replicaCount: + _default: 1 + stage: 1 + preprod: 3 + production: 3 + + port: + _default: 80 + + probes: + liveness: + enabled: false + readiness: + enabled: false + + service: + enabled: true + + name: + _default: workspaces-v2-frontend-static-service + + + type: + _default: ClusterIP + + port: + _default: 8080 + + targetPort: + _default: 80 + + portName: + _default: http + + imagePullSecrets: + enabled: + _default: true + name: + _default: regcred + volumes: + _default: + - name: nginx-configmap + mountPath: + _default: /etc/nginx/nginx.conf + subPath: + _default: nginx.conf + readOnly: + _default: true + configMap: + name: + _default: nginx-configmap + items: + - key: nginx.conf + path: nginx.conf + defaultMode: 420 + + + + commitSha: "" + gitlabUri: "" + gitlabJobUrl: "" + owner: "" \ No newline at end of file diff --git a/apps/workspaces/brusnika-prod/kustomization.yaml b/apps/workspaces/brusnika-prod/kustomization.yaml new file mode 100644 index 0000000..b82a154 --- /dev/null +++ b/apps/workspaces/brusnika-prod/kustomization.yaml @@ -0,0 +1,7 @@ +--- +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +namespace: workspaces +resources: + - frontend.yaml + - api.yaml diff --git a/clusters/brusnika-prod/kustomization.yaml b/clusters/brusnika-prod/kustomization.yaml index 36b30a3..2cbeb3c 100644 --- a/clusters/brusnika-prod/kustomization.yaml +++ b/clusters/brusnika-prod/kustomization.yaml @@ -9,4 +9,5 @@ resources: - ../../apps/mapper/brusnika-prod - ../../apps/documentations/brusnika-prod - ../../apps/notes/brusnika-prod - - ../../apps/drawings/brusnika-prod \ No newline at end of file + - ../../apps/drawings/brusnika-prod + - ../../apps/workspaces/brusnika-prod \ No newline at end of file