Skip to content

Commit

Permalink
chore(deps): bump the main group with 5 updates (#856)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and dependabot[bot] authored Dec 18, 2024
1 parent de28bcb commit 2c8ef37
Show file tree
Hide file tree
Showing 16 changed files with 70 additions and 42 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

- Add `ServiceIntegrationEndpoint` field `datadog.extra_tags_prefix`, type `string`: Extra tags prefix.
Defaults to aiven
- Change `Flink` field `userConfig.flink_version`: enum add `1.20`
- Add `OpenSearch` field `userConfig.opensearch_dashboards.multiple_data_source_enabled`, type `boolean`:
Enable or disable multiple data sources in OpenSearch Dashboards
- Change `OpenSearch` field `userConfig.opensearch_dashboards.max_old_space_size`: maximum ~~`2048`~~
`4096`
- Change `PostgreSQL` field `userConfig.pg_version`: enum add `17`

## v0.26.0 - 2024-11-21

Expand Down
2 changes: 1 addition & 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.

5 changes: 4 additions & 1 deletion 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.

5 changes: 2 additions & 3 deletions api/v1alpha1/userconfig/service/pg/pg.go

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

1 change: 1 addition & 0 deletions charts/aiven-operator-crds/templates/aiven.io_flinks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ spec:
description: Flink major version
enum:
- "1.19"
- "1.20"
type: string
x-kubernetes-validations:
- message: Value is immutable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1357,9 +1357,14 @@ spec:
max_old_space_size option of the nodejs running the OpenSearch
Dashboards. Note: the memory reserved by OpenSearch Dashboards
is not available for OpenSearch."
maximum: 2048
maximum: 4096
minimum: 64
type: integer
multiple_data_source_enabled:
description:
Enable or disable multiple data sources in OpenSearch
Dashboards
type: boolean
opensearch_request_timeout:
description:
Timeout in milliseconds for requests made by
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ spec:
description: PostgreSQL specific user configuration options
properties:
additional_backup_regions:
description: Deprecated. Additional Cloud Regions for Backup Replication
description: Additional Cloud Regions for Backup Replication
items:
type: string
maxItems: 1
Expand Down Expand Up @@ -781,6 +781,7 @@ spec:
- "14"
- "15"
- "16"
- "17"
type: string
pgaudit:
description:
Expand Down
1 change: 1 addition & 0 deletions config/crd/bases/aiven.io_flinks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ spec:
description: Flink major version
enum:
- "1.19"
- "1.20"
type: string
x-kubernetes-validations:
- message: Value is immutable
Expand Down
7 changes: 6 additions & 1 deletion config/crd/bases/aiven.io_opensearches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1357,9 +1357,14 @@ spec:
max_old_space_size option of the nodejs running the OpenSearch
Dashboards. Note: the memory reserved by OpenSearch Dashboards
is not available for OpenSearch."
maximum: 2048
maximum: 4096
minimum: 64
type: integer
multiple_data_source_enabled:
description:
Enable or disable multiple data sources in OpenSearch
Dashboards
type: boolean
opensearch_request_timeout:
description:
Timeout in milliseconds for requests made by
Expand Down
3 changes: 2 additions & 1 deletion config/crd/bases/aiven.io_postgresqls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ spec:
description: PostgreSQL specific user configuration options
properties:
additional_backup_regions:
description: Deprecated. Additional Cloud Regions for Backup Replication
description: Additional Cloud Regions for Backup Replication
items:
type: string
maxItems: 1
Expand Down Expand Up @@ -781,6 +781,7 @@ spec:
- "14"
- "15"
- "16"
- "17"
type: string
pgaudit:
description:
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/api-reference/flink.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Cassandra specific user configuration options.
**Optional**

- [`additional_backup_regions`](#spec.userConfig.additional_backup_regions-property){: name='spec.userConfig.additional_backup_regions-property'} (array of strings, MaxItems: 1). Deprecated. Additional Cloud Regions for Backup Replication.
- [`flink_version`](#spec.userConfig.flink_version-property){: name='spec.userConfig.flink_version-property'} (string, Enum: `1.19`, Immutable). Flink major version.
- [`flink_version`](#spec.userConfig.flink_version-property){: name='spec.userConfig.flink_version-property'} (string, Enum: `1.19`, `1.20`, Immutable). Flink major version.
- [`ip_filter`](#spec.userConfig.ip_filter-property){: name='spec.userConfig.ip_filter-property'} (array of objects, MaxItems: 1024). Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`. See below for [nested schema](#spec.userConfig.ip_filter).
- [`number_of_task_slots`](#spec.userConfig.number_of_task_slots-property){: name='spec.userConfig.number_of_task_slots-property'} (integer, Minimum: 1, Maximum: 1024). Task slots per node. For a 3 node plan, total number of task slots is 3x this value.
- [`pekko_ask_timeout_s`](#spec.userConfig.pekko_ask_timeout_s-property){: name='spec.userConfig.pekko_ask_timeout_s-property'} (integer, Minimum: 5, Maximum: 60). Timeout in seconds used for all futures and blocking Pekko requests.
Expand Down
3 changes: 2 additions & 1 deletion docs/docs/api-reference/opensearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,8 @@ OpenSearch Dashboards settings.
**Optional**

- [`enabled`](#spec.userConfig.opensearch_dashboards.enabled-property){: name='spec.userConfig.opensearch_dashboards.enabled-property'} (boolean). Enable or disable OpenSearch Dashboards.
- [`max_old_space_size`](#spec.userConfig.opensearch_dashboards.max_old_space_size-property){: name='spec.userConfig.opensearch_dashboards.max_old_space_size-property'} (integer, Minimum: 64, Maximum: 2048). Limits the maximum amount of memory (in MiB) the OpenSearch Dashboards process can use. This sets the max_old_space_size option of the nodejs running the OpenSearch Dashboards. Note: the memory reserved by OpenSearch Dashboards is not available for OpenSearch.
- [`max_old_space_size`](#spec.userConfig.opensearch_dashboards.max_old_space_size-property){: name='spec.userConfig.opensearch_dashboards.max_old_space_size-property'} (integer, Minimum: 64, Maximum: 4096). Limits the maximum amount of memory (in MiB) the OpenSearch Dashboards process can use. This sets the max_old_space_size option of the nodejs running the OpenSearch Dashboards. Note: the memory reserved by OpenSearch Dashboards is not available for OpenSearch.
- [`multiple_data_source_enabled`](#spec.userConfig.opensearch_dashboards.multiple_data_source_enabled-property){: name='spec.userConfig.opensearch_dashboards.multiple_data_source_enabled-property'} (boolean). Enable or disable multiple data sources in OpenSearch Dashboards.
- [`opensearch_request_timeout`](#spec.userConfig.opensearch_dashboards.opensearch_request_timeout-property){: name='spec.userConfig.opensearch_dashboards.opensearch_request_timeout-property'} (integer, Minimum: 5000, Maximum: 120000). Timeout in milliseconds for requests made by OpenSearch Dashboards towards OpenSearch.

### private_access {: #spec.userConfig.private_access }
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/api-reference/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ PostgreSQL specific user configuration options.

**Optional**

- [`additional_backup_regions`](#spec.userConfig.additional_backup_regions-property){: name='spec.userConfig.additional_backup_regions-property'} (array of strings, MaxItems: 1). Deprecated. Additional Cloud Regions for Backup Replication.
- [`additional_backup_regions`](#spec.userConfig.additional_backup_regions-property){: name='spec.userConfig.additional_backup_regions-property'} (array of strings, MaxItems: 1). Additional Cloud Regions for Backup Replication.
- [`admin_password`](#spec.userConfig.admin_password-property){: name='spec.userConfig.admin_password-property'} (string, Immutable, Pattern: `^[a-zA-Z0-9-_]+$`, MinLength: 8, MaxLength: 256). Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
- [`admin_username`](#spec.userConfig.admin_username-property){: name='spec.userConfig.admin_username-property'} (string, Immutable, Pattern: `^[_A-Za-z0-9][-._A-Za-z0-9]{0,63}$`, MaxLength: 64). Custom username for admin user. This must be set only when a new service is being created.
- [`backup_hour`](#spec.userConfig.backup_hour-property){: name='spec.userConfig.backup_hour-property'} (integer, Minimum: 0, Maximum: 23). The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
Expand All @@ -211,7 +211,7 @@ PostgreSQL specific user configuration options.
- [`pg_read_replica`](#spec.userConfig.pg_read_replica-property){: name='spec.userConfig.pg_read_replica-property'} (boolean). Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
- [`pg_service_to_fork_from`](#spec.userConfig.pg_service_to_fork_from-property){: name='spec.userConfig.pg_service_to_fork_from-property'} (string, Immutable, Pattern: `^[a-z][-a-z0-9]{0,63}$|^$`, MaxLength: 64). Name of the PG Service from which to fork (deprecated, use service_to_fork_from). This has effect only when a new service is being created.
- [`pg_stat_monitor_enable`](#spec.userConfig.pg_stat_monitor_enable-property){: name='spec.userConfig.pg_stat_monitor_enable-property'} (boolean). Enable the pg_stat_monitor extension. Enabling this extension will cause the cluster to be restarted.When this extension is enabled, pg_stat_statements results for utility commands are unreliable.
- [`pg_version`](#spec.userConfig.pg_version-property){: name='spec.userConfig.pg_version-property'} (string, Enum: `13`, `14`, `15`, `16`). PostgreSQL major version.
- [`pg_version`](#spec.userConfig.pg_version-property){: name='spec.userConfig.pg_version-property'} (string, Enum: `13`, `14`, `15`, `16`, `17`). PostgreSQL major version.
- [`pgaudit`](#spec.userConfig.pgaudit-property){: name='spec.userConfig.pgaudit-property'} (object). Deprecated. System-wide settings for the pgaudit extension. See below for [nested schema](#spec.userConfig.pgaudit).
- [`pgbouncer`](#spec.userConfig.pgbouncer-property){: name='spec.userConfig.pgbouncer-property'} (object). PGBouncer connection pooling settings. See below for [nested schema](#spec.userConfig.pgbouncer).
- [`pglookout`](#spec.userConfig.pglookout-property){: name='spec.userConfig.pglookout-property'} (object). System-wide settings for pglookout. See below for [nested schema](#spec.userConfig.pglookout).
Expand Down
18 changes: 9 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ toolchain go1.23.0

require (
github.com/ClickHouse/clickhouse-go/v2 v2.30.0
github.com/aiven/aiven-go-client/v2 v2.32.0
github.com/aiven/go-api-schemas v1.104.0
github.com/aiven/go-client-codegen v0.62.0
github.com/aiven/aiven-go-client/v2 v2.33.0
github.com/aiven/go-api-schemas v1.105.0
github.com/aiven/go-client-codegen v0.68.0
github.com/avast/retry-go v3.0.0+incompatible
github.com/dave/jennifer v1.7.1
github.com/docker/go-units v0.5.0
Expand All @@ -23,8 +23,8 @@ require (
github.com/stretchr/testify v1.10.0
github.com/xeipuuv/gojsonschema v1.2.0
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c
golang.org/x/sync v0.9.0
golang.org/x/tools v0.27.0
golang.org/x/sync v0.10.0
golang.org/x/tools v0.28.0
gopkg.in/yaml.v3 v3.0.1
k8s.io/api v0.26.15
k8s.io/apimachinery v0.26.15
Expand Down Expand Up @@ -89,11 +89,11 @@ require (
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.31.0 // indirect
golang.org/x/net v0.32.0 // indirect
golang.org/x/oauth2 v0.7.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/term v0.26.0 // indirect
golang.org/x/text v0.20.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.3.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
Expand Down
Loading

0 comments on commit 2c8ef37

Please sign in to comment.