Skip to content

Commit

Permalink
chore(updater): bump pkg/dist/*.yml (2024-01-15)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored and byashimov committed Jan 15, 2024
1 parent d8426f9 commit 6218ece
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 5 deletions.
15 changes: 11 additions & 4 deletions pkg/dist/integration_endpoint_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ rsyslog:
...
-----END CERTIFICATE-----
format:
title: message format
title: Message format
type: string
default: rfc5424
enum:
Expand All @@ -518,14 +518,21 @@ rsyslog:
...
-----END PRIVATE KEY-----
logline:
title: custom syslog message format
title: Custom syslog message format
type: string
min_length: 1
max_length: 512
pattern: ^[ -~\t]+$
example: <%pri%>%timestamp:::date-rfc3339% %HOSTNAME% %app-name% %msg%
max_message_size:
title: Rsyslog max message size
type: integer
default: "8192"
minimum: 2048
maximum: 2.147483647e+09
example: "8192"
port:
title: rsyslog server port
title: Rsyslog server port
type: integer
default: "514"
minimum: 1
Expand All @@ -539,7 +546,7 @@ rsyslog:
max_length: 1024
example: TOKEN tag="LiteralValue"
server:
title: rsyslog server IP address or hostname
title: Rsyslog server IP address or hostname
type: string
min_length: 4
max_length: 255
Expand Down
24 changes: 23 additions & 1 deletion pkg/dist/service_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1161,6 +1161,10 @@ grafana:
example: aiven
user_error: Must consist of alpha-numeric characters and dashes
max_items: 50
auto_login:
title: Allow users to bypass the login screen and automatically log in
type: boolean
example: false
client_id:
title: Client ID from provider
type: string
Expand All @@ -1176,7 +1180,7 @@ grafana:
example: bfa6gea4f129076761dcba8ce5e1e406bd83af7b
user_error: Must be a valid client secret string
skip_org_role_sync:
title: Automatically sync user roles.
title: Stop automatically syncing user roles
type: boolean
example: false
team_ids:
Expand Down Expand Up @@ -2726,6 +2730,24 @@ kafka_mirrormaker:
type: integer
minimum: 1
example: "60"
groups:
title: Comma-separated list of consumer groups to replicate
description: Consumer groups to replicate. Supports comma-separated group IDs and regexes.
type: string
max_length: 128
example: .*
groups_exclude:
title: Comma-separated list of group IDs and regexes to exclude from replication
description: Exclude groups. Supports comma-separated group IDs and regexes. Excludes take precedence over includes.
type: string
max_length: 128
example: console-consumer-.*,connect-.*,__.*
offset_lag_max:
title: Maximum offset lag before it is resynced
description: How out-of-sync a remote partition can be before it is resynced.
type: integer
minimum: 1
example: "100"
refresh_groups_enabled:
title: Refresh consumer groups
description: Whether to periodically check for new consumer groups. Defaults to 'true'.
Expand Down

0 comments on commit 6218ece

Please sign in to comment.