DEVX-200: [BE] Унифицировать понятие версии сервиса

This commit is contained in:
2026-04-08 14:08:07 +03:00
parent 906faf7177
commit 012301efd9
6 changed files with 16 additions and 11 deletions
+2 -1
View File
@@ -41,7 +41,8 @@ jobs:
run: | run: |
echo "Cloning ${{ github.event.inputs.repo_path }}" echo "Cloning ${{ github.event.inputs.repo_path }}"
echo "From branch ${{ github.event.inputs.branch }}" echo "From branch ${{ github.event.inputs.branch }}"
- name: Cloning2 echo "Namespace ${{ github.event.inputs.namespace }}"
- name: Cloning
uses: https://git.binom.pw/otp/devops/clone@main uses: https://git.binom.pw/otp/devops/clone@main
with: with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
+6 -1
View File
@@ -33,7 +33,12 @@ jobs:
name: 'Deploy to dev' name: 'Deploy to dev'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Cloning2 - name: 'Print Info'
run: |
echo "Cloning ${{ github.event.inputs.repo_path }}"
echo "From branch ${{ github.event.inputs.branch }}"
echo "Namespace ${{ github.event.inputs.namespace }}"
- name: Cloning
uses: https://git.binom.pw/otp/devops/clone@main uses: https://git.binom.pw/otp/devops/clone@main
with: with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
-3
View File
@@ -29,6 +29,3 @@ auth:
jwk: jwk:
url: 'http://192.168.76.150/realms/devspace-dev/protocol/openid-connect/certs' url: 'http://192.168.76.150/realms/devspace-dev/protocol/openid-connect/certs'
claimName: 'dev-space' claimName: 'dev-space'
integrations:
core:
url: 'http://devspace-apiregistry-core-service-agent:8080'
@@ -19,9 +19,9 @@ data:
session.lifecycle.enabled: true session.lifecycle.enabled: true
fail-fast: true fail-fast: true
api-registry-core: api-registry-core:
url: 'http://{{$.Values.services.core}}' url: '{{$.Values.integrations.core.url}}'
api-registry-generator: api-registry-generator:
url: 'http://{{$.Values.services.generator}}' url: '{{$.Values.integrations.generator.url}}'
app: app:
auth: auth:
enabled: true enabled: true
-3
View File
@@ -10,9 +10,6 @@ vault:
appRole: appRole:
roleId: '85a3c725-075b-b107-b948-a076625a1a37' roleId: '85a3c725-075b-b107-b948-a076625a1a37'
secretId: 'b36b7b4c-5da4-d5cf-1cdf-f367bd52b475' secretId: 'b36b7b4c-5da4-d5cf-1cdf-f367bd52b475'
services:
core: 'devspace-apiregistry-core-service-agent:8080'
generator: 'devspace-apiregistry-generator-service-agent:8080'
keycloak: keycloak:
jwk: 'http://192.168.76.150/realms/devspace-dev/protocol/openid-connect/certs' jwk: 'http://192.168.76.150/realms/devspace-dev/protocol/openid-connect/certs'
claimName: 'dev-space' claimName: 'dev-space'
+6 -1
View File
@@ -1,2 +1,7 @@
ingress: ingress:
host: '{{$.Values.ingress.domain}}.{{$.Release.Namespace}}.kube.xx' host: '{{$.Values.ingress.domain}}.{{$.Release.Namespace}}.kube.xx'
integrations:
core:
url: 'http://main-devspace-apiregistry-core-service:8080'
generator:
url: 'http://devspace-apiregistry-generator-service-agent:8080'