From 8bb12ff371fbec0e0d71e1754c2eb9bed9aa53ed Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 16 Apr 2026 18:11:51 +0500 Subject: [PATCH] ++ --- checklists/base/backend-deployment.yaml | 80 ++++++++++++++++ checklists/base/backend-service.yaml | 15 +++ checklists/base/kustomization.yaml | 8 ++ checklists/base/namespace.yaml | 7 ++ checklists/yc-k8s-test/kustomization.yaml | 7 ++ checklists/yc-k8s-test/postgresql.yaml | 110 ++++++++++++++++++++++ 6 files changed, 227 insertions(+) create mode 100644 checklists/base/backend-deployment.yaml create mode 100644 checklists/base/backend-service.yaml create mode 100644 checklists/base/kustomization.yaml create mode 100644 checklists/base/namespace.yaml create mode 100644 checklists/yc-k8s-test/kustomization.yaml create mode 100644 checklists/yc-k8s-test/postgresql.yaml diff --git a/checklists/base/backend-deployment.yaml b/checklists/base/backend-deployment.yaml new file mode 100644 index 0000000..c9765fe --- /dev/null +++ b/checklists/base/backend-deployment.yaml @@ -0,0 +1,80 @@ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: checklists-backend + namespace: rfi + labels: + app: checklists-backend + service: api +spec: + replicas: 1 + selector: + matchLabels: + app: checklists-backend + template: + metadata: + labels: + app: checklists-backend + service: checklists-backend + spec: + containers: + - name: api + image: cr.yandex/crp3ccidau046kdj8g9q/checklists-backend:production_68f242cd + imagePullPolicy: IfNotPresent + ports: + - name: http + containerPort: 8000 + protocol: TCP + env: + - name: HTTP_APP_HOST + value: 0.0.0.0 + - name: HTTP_APP_PORT + value: "8000" + - name: HTTP_APP_ROOT_PATH + value: /checklists + - name: HTTP_APP_WORKERS + value: "8" + - name: HTTP_APP_ADMIN_ENABLE + value: "true" + - name: JWT_AUTH_ENABLE + value: "true" + - name: DEBUG + value: "false" + - name: DATABASE_USER + valueFrom: + secretKeyRef: + key: username + name: postgresql-secret + - name: DATABASE_PASSWORD + valueFrom: + secretKeyRef: + key: password + name: postgresql-secret + - name: DATABASE_NAME + valueFrom: + secretKeyRef: + key: database + name: postgresql-secret + - name: DATABASE_PORT + valueFrom: + secretKeyRef: + key: port + name: postgresql-secret + - name: DATABASE_HOST + valueFrom: + secretKeyRef: + key: hostname + name: postgresql-secret + - name: JWT_AUTH_PUBLIC_KEY + valueFrom: + secretKeyRef: + key: public-key + name: jwt-secret + + resources: + requests: + cpu: "1" + memory: 1Gi + imagePullSecrets: + - name: regcred diff --git a/checklists/base/backend-service.yaml b/checklists/base/backend-service.yaml new file mode 100644 index 0000000..f938e6d --- /dev/null +++ b/checklists/base/backend-service.yaml @@ -0,0 +1,15 @@ +--- +apiVersion: v1 +kind: Service +metadata: + name: rfi-backend-api-svc + namespace: rfi +spec: + type: ClusterIP + selector: + app: rfi-backend-api + ports: + - name: http + port: 80 + targetPort: 8000 + protocol: TCP diff --git a/checklists/base/kustomization.yaml b/checklists/base/kustomization.yaml new file mode 100644 index 0000000..d88ae04 --- /dev/null +++ b/checklists/base/kustomization.yaml @@ -0,0 +1,8 @@ +--- +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +namespace: checklists +resources: + - namespace.yaml + - backend-deployment.yaml + - backend-service.yaml diff --git a/checklists/base/namespace.yaml b/checklists/base/namespace.yaml new file mode 100644 index 0000000..0ec7137 --- /dev/null +++ b/checklists/base/namespace.yaml @@ -0,0 +1,7 @@ +--- +apiVersion: v1 +kind: Namespace +metadata: + name: checklists + labels: + istio-injection: enabled diff --git a/checklists/yc-k8s-test/kustomization.yaml b/checklists/yc-k8s-test/kustomization.yaml new file mode 100644 index 0000000..e601931 --- /dev/null +++ b/checklists/yc-k8s-test/kustomization.yaml @@ -0,0 +1,7 @@ +--- +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: + - ../base + - postgresql.yaml +patches: [] diff --git a/checklists/yc-k8s-test/postgresql.yaml b/checklists/yc-k8s-test/postgresql.yaml new file mode 100644 index 0000000..2df906f --- /dev/null +++ b/checklists/yc-k8s-test/postgresql.yaml @@ -0,0 +1,110 @@ +apiVersion: helm.toolkit.fluxcd.io/v2 +kind: HelmRelease +metadata: + name: postgresql + namespace: checklists +spec: + interval: 5m + timeout: 2h + chart: + spec: + chart: postgresql-contour + version: "17.0.2" + sourceRef: + kind: HelmRepository + name: yc-oci-charts + namespace: flux-system + + install: + timeout: 2h + remediation: + retries: 3 + + upgrade: + timeout: 2h + remediation: + retries: 3 + + values: + global: + security: + allowInsecureImages: true + defaultStorageClass: local-path + postgresql: + auth: + username: "" + database: "" + secretKeys: + userPasswordKey: "postgres-password" + auth: + username: "" + database: "" + secretKeys: + userPasswordKey: "postgres-password" + image: + registry: cr.yandex/crp3ccidau046kdj8g9q + repository: contour/postgresql + tag: 17.0.2 + pullPolicy: Always + metrics: + enabled: false + prometheusRule: + enabled: false + primary: + containerSecurityContext: + readOnlyRootFilesystem: false + persistence: + storageClass: local-path + size: 20Gi + customLivenessProbe: + exec: + command: + - /bin/sh + - -c + - exec pg_isready -U "sarex" -d postgres -h 127.0.0.1 -p 5432 + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 6 + customReadinessProbe: + exec: + command: + - /bin/sh + - -c + - exec pg_isready -U "sarex" -d postgres -h 127.0.0.1 -p 5432 + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 6 + customStartupProbe: + exec: + command: + - /bin/sh + - -c + - exec pg_isready -U "sarex" -d postgres -h 127.0.0.1 -p 5432 + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 6 + nodeSelector: + dedicated: db + tolerations: + - key: dedicated + operator: Equal + value: db + effect: NoSchedule + contour: + enabled: true + adminUser: "" + adminPasswordSecretKey: "" + sharedPreloadLibraries: "pg_stat_statements" + databases: + - name: checklists_db + user: checklists + extensions: [] + restoreFromDump: false + s3-proxy: + endpointUrl: "s3-proxy-service.postgresql.svc.cluster.local"