Skip to content
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

chore(deps): bump the main group with 3 updates #868

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [MAJOR.MINOR.PATCH] - YYYY-MM-DD

- Change `Flink` field `userConfig.custom_code`: immutable `true`
- Add `Grafana` field `userConfig.dashboard_scenes_enabled`, type `boolean`: Enable use of the Grafana
Scenes Library as the dashboard engine. i.e
- Add `KafkaConnect` field `userConfig.plugin_versions`, type `array`: The plugin selected by the user
- Add `OpenSearch` field `userConfig.opensearch.cluster.search.request.slowlog`, type `object`:

Check notice on line 9 in CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Trunk Check

markdownlint(MD009)

[new] Trailing spaces
- Add `OpenSearch` field `userConfig.opensearch.enable_remote_backed_storage`, type `boolean`: Enable
remote-backed storage

## v0.27.0 - 2025-01-16

- Add `ServiceIntegrationEndpoint` field `datadog.extra_tags_prefix`, type `string`: Extra tags prefix.
Expand Down
3 changes: 2 additions & 1 deletion api/v1alpha1/userconfig/service/flink/flink.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions api/v1alpha1/userconfig/service/grafana/grafana.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions api/v1alpha1/userconfig/service/kafka_connect/kafka_connect.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions api/v1alpha1/userconfig/service/opensearch/opensearch.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions charts/aiven-operator-crds/templates/aiven.io_flinks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@ spec:
custom_code:
description: Enable to upload Custom JARs for Flink applications
type: boolean
x-kubernetes-validations:
- message: Value is immutable
rule: self == oldSelf
flink_version:
description: Flink major version
enum:
Expand Down
6 changes: 6 additions & 0 deletions charts/aiven-operator-crds/templates/aiven.io_grafanas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,12 @@ spec:
intensive. It may cause low-end plans to work more slowly while
the dashboard previews are rendering.
type: boolean
dashboard_scenes_enabled:
description:
Enable use of the Grafana Scenes Library as the dashboard
engine. i.e. the `dashboardScene` feature flag. Upstream blog
post at https://grafana.com/blog/2024/10/31/grafana-dashboards-are-now-powered-by-scenes-big-changes-same-ui/
type: boolean
dashboards_min_refresh_interval:
description:
Signed sequence of decimal numbers, followed by a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,26 @@ spec:
minimum: 1
type: integer
type: object
plugin_versions:
description: The plugin selected by the user
items:
description: A Kafka Connect plugin
properties:
plugin_name:
description: The name of the plugin
maxLength: 128
pattern: ^[^\r\n]*$
type: string
version:
description: The version of the plugin
maxLength: 128
pattern: ^[^\r\n]*$
type: string
required:
- plugin_name
- version
type: object
type: array
private_access:
description:
Allow access to selected service ports from private
Expand Down
49 changes: 49 additions & 0 deletions charts/aiven-operator-crds/templates/aiven.io_opensearches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,52 @@ spec:
it was set to true does not invoke redistribution of primary
shards. Default is false.
type: boolean
cluster.search.request.slowlog:
properties:
level:
description: Log level
enum:
- debug
- info
- trace
- warn
type: string
threshold:
properties:
debug:
description:
Debug threshold for total request took
time. The value should be in the form count and
unit, where unit one of (s,m,h,d,nanos,ms,micros)
or -1. Default is -1
pattern: ^[^\r\n]*$
type: string
info:
description:
Info threshold for total request took
time. The value should be in the form count and
unit, where unit one of (s,m,h,d,nanos,ms,micros)
or -1. Default is -1
pattern: ^[^\r\n]*$
type: string
trace:
description:
Trace threshold for total request took
time. The value should be in the form count and
unit, where unit one of (s,m,h,d,nanos,ms,micros)
or -1. Default is -1
pattern: ^[^\r\n]*$
type: string
warn:
description:
Warning threshold for total request took
time. The value should be in the form count and
unit, where unit one of (s,m,h,d,nanos,ms,micros)
or -1. Default is -1
pattern: ^[^\r\n]*$
type: string
type: object
type: object
cluster_max_shards_per_node:
description:
Controls the number of shards allowed in the
Expand Down Expand Up @@ -754,6 +800,9 @@ spec:
maxLength: 320
pattern: ^[^\x00-\x1F]+$
type: string
enable_remote_backed_storage:
description: Enable remote-backed storage
type: boolean
enable_security_audit:
description: Enable/Disable security audit
type: boolean
Expand Down
3 changes: 3 additions & 0 deletions config/crd/bases/aiven.io_flinks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@ spec:
custom_code:
description: Enable to upload Custom JARs for Flink applications
type: boolean
x-kubernetes-validations:
- message: Value is immutable
rule: self == oldSelf
flink_version:
description: Flink major version
enum:
Expand Down
6 changes: 6 additions & 0 deletions config/crd/bases/aiven.io_grafanas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,12 @@ spec:
intensive. It may cause low-end plans to work more slowly while
the dashboard previews are rendering.
type: boolean
dashboard_scenes_enabled:
description:
Enable use of the Grafana Scenes Library as the dashboard
engine. i.e. the `dashboardScene` feature flag. Upstream blog
post at https://grafana.com/blog/2024/10/31/grafana-dashboards-are-now-powered-by-scenes-big-changes-same-ui/
type: boolean
dashboards_min_refresh_interval:
description:
Signed sequence of decimal numbers, followed by a
Expand Down
Loading
Loading