chore: grpc + mtls working
ci-agent / build (push) Failing after 1m19s

This commit is contained in:
d3m0k1d
2026-04-04 03:55:37 +03:00
parent 28631865c8
commit a2c71da3a0
24 changed files with 1095 additions and 31 deletions
+2 -3
View File
@@ -1,5 +1,4 @@
backend_url: http://backend:8080
label: test-agent-1
services:
- service1
- service2
registration_token: ""
cert_dir: /etc/hellreign-agent/certs
+6
View File
@@ -3,3 +3,9 @@ database:
clickhouse_host: clickhouse:9000
clickhouse_user: default
clickhouse_password: testpassword
clickhouse_database: hellreign
admin:
admin_name: Admin
admin_last_name: User
admin_login: admin
admin_password: admin123
+11 -4
View File
@@ -18,13 +18,17 @@ services:
backend:
build:
context: ../backend
dockerfile: dockerfile
context: ..
dockerfile: backend/dockerfile
container_name: hellreign-backend
environment:
CONFIG_FILE: /etc/hellreign/config.yml
SSL_CERT_DIR: /var/lib/hellreign/ssl
SERVER_SAN_DNS: localhost,backend
SERVER_SAN_IP: 127.0.0.1
ports:
- "8080:8080"
- "9001:9001"
volumes:
- ./backend/config.yml:/etc/hellreign/config.yml:ro
- backend_data:/var/lib/hellreign
@@ -47,13 +51,14 @@ services:
agent:
build:
context: ../agent
dockerfile: dockerfile
context: ..
dockerfile: agent/dockerfile
container_name: hellreign-agent
environment:
CONFIG_FILE: /etc/hellreign-agent/config.yml
volumes:
- ./agent/config.yml:/etc/hellreign-agent/config.yml:ro
- agent_certs:/etc/hellreign-agent/certs
depends_on:
- backend
networks:
@@ -64,6 +69,8 @@ volumes:
driver: local
backend_data:
driver: local
agent_certs:
driver: local
networks:
hellreign: