Skip to content

Commit c76842c

Browse files
feat(dbaas): add valkey properties support (#355)
1 parent 6bb0ba0 commit c76842c

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Added support for Valkey properties
13+
1014
## [3.14.0] - 2025-01-08
1115

1216
### Added

internal/commands/all/all.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ func BuildCommands(rootCmd *cobra.Command, conf *config.Config) {
151151
{serviceName: "OpenSearch", serviceType: "opensearch"},
152152
{serviceName: "PostgreSQL", serviceType: "pg"},
153153
{serviceName: "Redis", serviceType: "redis"},
154+
{serviceName: "Valkey", serviceType: "valkey"},
154155
} {
155156
typeCommand := commands.BuildCommand(databaseproperties.DBTypeCommand(i.serviceType, i.serviceName), propertiesCommand.Cobra(), conf)
156157
commands.BuildCommand(databaseproperties.ShowCommand(i.serviceType, i.serviceName), typeCommand.Cobra(), conf)

0 commit comments

Comments
 (0)