-
Notifications
You must be signed in to change notification settings - Fork 739
Removed POSTGRES_PASSWORD and POSTGRES_USER from docker docs #30280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,8 +6,6 @@ | |
|
|
||
| | Имя | Тип | Значение по умолчанию | Описание | | ||
| | -- | -- | -- | -- | | ||
| | [`POSTGRES_USER`](https://GitHub.com/ydb-platform/ydb/blob/c113fcffa7b1a20ad8dcb1b1760ae5bfa25370ca/ydb/public/tools/lib/cmds/__init__.py#L240) | `string` | `postgres` | Имя пользователя для доступа через [режим совместимости с PostgreSQL](../../postgresql/intro.md). | | ||
| | [`POSTGRES_PASSWORD`](https://GitHub.com/ydb-platform/ydb/blob/c113fcffa7b1a20ad8dcb1b1760ae5bfa25370ca/ydb/public/tools/lib/cmds/__init__.py#L240) | `string` | | Пароль пользователя для доступа через [режим совместимости с PostgreSQL](../../postgresql/intro.md). | | ||
| | [`YDB_GRPC_ENABLE_TLS`](https://GitHub.com/ydb-platform/ydb/blob/c113fcffa7b1a20ad8dcb1b1760ae5bfa25370ca/ydb/public/tools/lib/cmds/__init__.py#L258) | `0` или `1` | `1` | Включает использование TLS для gRPC соединений. | | ||
| | [`YDB_GRPC_TLS_DATA_PATH`](https://GitHub.com/ydb-platform/ydb/blob/8fefc809c83829d8d8b886e82534d009de4c8826/ydb/public/tools/lib/cmds/__init__.py#L291) | `string` | `/ydb_data` | Путь до директории с TLS сертификатами для gRPC соединений. | | ||
|
Comment on lines
9
to
10
|
||
| | [`MON_PORT`](https://GitHub.com/ydb-platform/ydb/blob/8dde59cd0af86737d07a1cd8ff19811a2bd2b663/ydb/tests/library/harness/kikimr_port_allocator.py#L170) | `int` | `8765` | HTTP-порт [встроенного веб-интерфейса {{ ydb-short-name }}](../../reference/embedded-ui/index.md). | | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing
POSTGRES_USERandPOSTGRES_PASSWORDfrom this documentation creates an inconsistency with other documentation files. These environment variables are still actively used in examples in:ydb/docs/en/core/postgresql/docker-connect.md(lines 36-37, 50)ydb/docs/en/core/postgresql/import.md(lines 67, 71)ydb/docs/ru/core/postgresql/import.md(lines 86, 90)If these variables are being deprecated, the examples in other documentation files should also be updated. If they're still valid, they should remain documented here.