Skip to content

Commit ff61bb7

Browse files
committed
fix: add billing properties for physical configs (#486)
1 parent 196c1d7 commit ff61bb7

File tree

3 files changed

+51
-45
lines changed

3 files changed

+51
-45
lines changed

engine/configs/config.example.physical_generic.yml

+17-15
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,6 @@ global:
5858
# Default database name.
5959
dbname: postgres
6060

61-
# Telemetry: anonymous statistics sent to Postgres.ai.
62-
# Used to analyze DLE usage, it helps the DLE maintainers make decisions on product development.
63-
# Please leave it enabled if possible – this will contribute to DLE development.
64-
# The full list of data points being collected: https://postgres.ai/docs/database-lab/telemetry
65-
telemetry:
66-
enabled: true
67-
# Telemetry API URL. To send anonymous telemetry data, keep it default ("https://postgres.ai/api/general").
68-
url: "https://postgres.ai/api/general"
69-
7061
# Manages filesystem pools (in the case of ZFS) or volume groups.
7162
poolManager:
7263
# The full path which contains the pool mount directories. mountDir can contain multiple pool directories.
@@ -320,19 +311,30 @@ diagnostic:
320311
# Postgres.ai Platform integration (provides GUI) – extends the open source offering.
321312
# Uncomment the following lines if you need GUI, personal tokens, audit logs, more.
322313
#
323-
#platform:
324-
# # Platform API URL. To work with Postgres.ai SaaS, keep it default
325-
# # ("https://postgres.ai/api/general").
326-
# url: "https://postgres.ai/api/general"
314+
platform:
315+
# Platform API URL. To work with Postgres.ai SaaS, keep it default
316+
# ("https://postgres.ai/api/general").
317+
url: "https://postgres.ai/api/general"
318+
# Telemetry: anonymous statistics sent to Postgres.ai.
319+
# Used to analyze DLE usage, it helps the DLE maintainers make decisions on product development.
320+
# Please leave it enabled if possible – this will contribute to DLE development.
321+
# The full list of data points being collected: https://postgres.ai/docs/database-lab/telemetry
322+
enableTelemetry: true
323+
#
324+
# # Project name
325+
# projectName: "project_name"
326+
#
327+
# # Organization key
328+
# orgKey: "org_key"
327329
#
328330
# # Token for authorization in Platform API. This token can be obtained on
329331
# # the Postgres.ai Console: https://postgres.ai/console/YOUR_ORG_NAME/tokens
330332
# # This token needs to be kept in secret, known only to the administrator.
331333
# accessToken: "platform_access_token"
332334
#
333335
# # Enable authorization with personal tokens of the organization's members.
334-
# # If false: all users must use "accessToken" value for any API request
335-
# # If true: "accessToken" is known only to admin, users use their own tokens,
336+
# # If false: all users must use "verificationToken" value for any API request
337+
# # If true: "verificationToken" is known only to admin, users use their own tokens,
336338
# # and any token can be revoked not affecting others
337339
# enablePersonalTokens: true
338340
#

engine/configs/config.example.physical_pgbackrest.yml

+17-15
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,6 @@ global:
5858
# Default database name.
5959
dbname: postgres
6060

61-
# Telemetry: anonymous statistics sent to Postgres.ai.
62-
# Used to analyze DLE usage, it helps the DLE maintainers make decisions on product development.
63-
# Please leave it enabled if possible – this will contribute to DLE development.
64-
# The full list of data points being collected: https://postgres.ai/docs/database-lab/telemetry
65-
telemetry:
66-
enabled: true
67-
# Telemetry API URL. To send anonymous telemetry data, keep it default ("https://postgres.ai/api/general").
68-
url: "https://postgres.ai/api/general"
69-
7061
# Manages filesystem pools (in the case of ZFS) or volume groups.
7162
poolManager:
7263
# The full path which contains the pool mount directories. mountDir can contain multiple pool directories.
@@ -339,19 +330,30 @@ diagnostic:
339330
# Postgres.ai Platform integration (provides GUI) – extends the open source offering.
340331
# Uncomment the following lines if you need GUI, personal tokens, audit logs, more.
341332
#
342-
#platform:
343-
# # Platform API URL. To work with Postgres.ai SaaS, keep it default
344-
# # ("https://postgres.ai/api/general").
345-
# url: "https://postgres.ai/api/general"
333+
platform:
334+
# Platform API URL. To work with Postgres.ai SaaS, keep it default
335+
# ("https://postgres.ai/api/general").
336+
url: "https://postgres.ai/api/general"
337+
# Telemetry: anonymous statistics sent to Postgres.ai.
338+
# Used to analyze DLE usage, it helps the DLE maintainers make decisions on product development.
339+
# Please leave it enabled if possible – this will contribute to DLE development.
340+
# The full list of data points being collected: https://postgres.ai/docs/database-lab/telemetry
341+
enableTelemetry: true
342+
#
343+
# # Project name
344+
# projectName: "project_name"
345+
#
346+
# # Organization key
347+
# orgKey: "org_key"
346348
#
347349
# # Token for authorization in Platform API. This token can be obtained on
348350
# # the Postgres.ai Console: https://postgres.ai/console/YOUR_ORG_NAME/tokens
349351
# # This token needs to be kept in secret, known only to the administrator.
350352
# accessToken: "platform_access_token"
351353
#
352354
# # Enable authorization with personal tokens of the organization's members.
353-
# # If false: all users must use "accessToken" value for any API request
354-
# # If true: "accessToken" is known only to admin, users use their own tokens,
355+
# # If false: all users must use "verificationToken" value for any API request
356+
# # If true: "verificationToken" is known only to admin, users use their own tokens,
355357
# # and any token can be revoked not affecting others
356358
# enablePersonalTokens: true
357359
#

engine/configs/config.example.physical_walg.yml

+17-15
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,6 @@ global:
5858
# Default database name.
5959
dbname: postgres
6060

61-
# Telemetry: anonymous statistics sent to Postgres.ai.
62-
# Used to analyze DLE usage, it helps the DLE maintainers make decisions on product development.
63-
# Please leave it enabled if possible – this will contribute to DLE development.
64-
# The full list of data points being collected: https://postgres.ai/docs/database-lab/telemetry
65-
telemetry:
66-
enabled: true
67-
# Telemetry API URL. To send anonymous telemetry data, keep it default ("https://postgres.ai/api/general").
68-
url: "https://postgres.ai/api/general"
69-
7061
# Manages filesystem pools (in the case of ZFS) or volume groups.
7162
poolManager:
7263
# The full path which contains the pool mount directories. mountDir can contain multiple pool directories.
@@ -312,19 +303,30 @@ diagnostic:
312303
# Postgres.ai Platform integration (provides GUI) – extends the open source offering.
313304
# Uncomment the following lines if you need GUI, personal tokens, audit logs, more.
314305
#
315-
#platform:
316-
# # Platform API URL. To work with Postgres.ai SaaS, keep it default
317-
# # ("https://postgres.ai/api/general").
318-
# url: "https://postgres.ai/api/general"
306+
platform:
307+
# Platform API URL. To work with Postgres.ai SaaS, keep it default
308+
# ("https://postgres.ai/api/general").
309+
url: "https://postgres.ai/api/general"
310+
# Telemetry: anonymous statistics sent to Postgres.ai.
311+
# Used to analyze DLE usage, it helps the DLE maintainers make decisions on product development.
312+
# Please leave it enabled if possible – this will contribute to DLE development.
313+
# The full list of data points being collected: https://postgres.ai/docs/database-lab/telemetry
314+
enableTelemetry: true
315+
#
316+
# # Project name
317+
# projectName: "project_name"
318+
#
319+
# # Organization key
320+
# orgKey: "org_key"
319321
#
320322
# # Token for authorization in Platform API. This token can be obtained on
321323
# # the Postgres.ai Console: https://postgres.ai/console/YOUR_ORG_NAME/tokens
322324
# # This token needs to be kept in secret, known only to the administrator.
323325
# accessToken: "platform_access_token"
324326
#
325327
# # Enable authorization with personal tokens of the organization's members.
326-
# # If false: all users must use "accessToken" value for any API request
327-
# # If true: "accessToken" is known only to admin, users use their own tokens,
328+
# # If false: all users must use "verificationToken" value for any API request
329+
# # If true: "verificationToken" is known only to admin, users use their own tokens,
328330
# # and any token can be revoked not affecting others
329331
# enablePersonalTokens: true
330332
#

0 commit comments

Comments
 (0)