We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea3fbbc commit b7dc593Copy full SHA for b7dc593
.github/docker/Dockerfile
@@ -44,6 +44,7 @@ COPY --from=builder \
44
EXPOSE ${GRPC_TLS_PORT:-2135}
45
EXPOSE ${GRPC_PORT:-2136}
46
EXPOSE ${MON_PORT:-8765}
47
+EXPOSE ${YDB_KAFKA_PROXY_PORT:-9092}
48
49
HEALTHCHECK --start-period=60s --interval=1s CMD sh ./health_check
50
.github/docker/files/initialize_local_ydb
@@ -8,6 +8,7 @@ export YDB_GRPC_ENABLE_TLS="true"
8
export GRPC_TLS_PORT=${GRPC_TLS_PORT:-2135}
9
export GRPC_PORT=${GRPC_PORT:-2136}
10
export YDB_GRPC_TLS_DATA_PATH="/ydb_certs"
11
+export YDB_KAFKA_PROXY_PORT=${YDB_KAFKA_PROXY_PORT:-9092}
12
13
/local_ydb deploy --ydb-working-dir /ydb_data --ydb-binary-path /ydbd --fixed-ports --dont-use-log-files;
14
0 commit comments