diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-migrate-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-migrate-usage.golden index 17d65983f4..bd961cc2b4 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-migrate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-migrate-usage.golden @@ -1,6 +1,6 @@ šŸŽ²šŸŽ²šŸŽ² EXIT CODE: 0 šŸŽ²šŸŽ²šŸŽ² šŸŸ„šŸŸ„šŸŸ„ STDERRļøļø šŸŸ„šŸŸ„šŸŸ„ļø -Upgrade your standalone Redisā„¢ Database Instance node, either by upgrading to a bigger node type (vertical scaling) or by adding more nodes to your Database Instance to increase your number of endpoints and distribute cache (horizontal scaling). Note that scaling horizontally your Redisā„¢ Database Instance will not renew its TLS certificate. In order to refresh the TLS certificate, you must use the Renew TLS certificate endpoint. +Upgrade your Redisā„¢ Database Instance, either by upgrading to a bigger node type (vertical scaling) or by adding more nodes to your Database Instance to increase your number of endpoints and distribute cache (horizontal scaling, available for clusters only). Note that scaling horizontally your Redisā„¢ Database Instance will not renew its TLS certificate. In order to refresh the TLS certificate, you must use the Renew TLS certificate endpoint. USAGE: scw redis cluster migrate [arg=value ...] diff --git a/docs/commands/redis.md b/docs/commands/redis.md index 33c4a13e9e..6b54b4e559 100644 --- a/docs/commands/redis.md +++ b/docs/commands/redis.md @@ -273,7 +273,7 @@ scw redis cluster metrics [arg=value ...] ### Scale up a Redisā„¢ Database Instance -Upgrade your standalone Redisā„¢ Database Instance node, either by upgrading to a bigger node type (vertical scaling) or by adding more nodes to your Database Instance to increase your number of endpoints and distribute cache (horizontal scaling). Note that scaling horizontally your Redisā„¢ Database Instance will not renew its TLS certificate. In order to refresh the TLS certificate, you must use the Renew TLS certificate endpoint. +Upgrade your Redisā„¢ Database Instance, either by upgrading to a bigger node type (vertical scaling) or by adding more nodes to your Database Instance to increase your number of endpoints and distribute cache (horizontal scaling, available for clusters only). Note that scaling horizontally your Redisā„¢ Database Instance will not renew its TLS certificate. In order to refresh the TLS certificate, you must use the Renew TLS certificate endpoint. **Usage:** diff --git a/internal/namespaces/redis/v1/redis_cli.go b/internal/namespaces/redis/v1/redis_cli.go index 77fcef3b39..f21a41195e 100644 --- a/internal/namespaces/redis/v1/redis_cli.go +++ b/internal/namespaces/redis/v1/redis_cli.go @@ -404,7 +404,7 @@ func redisClusterList() *core.Command { func redisClusterMigrate() *core.Command { return &core.Command{ Short: `Scale up a Redisā„¢ Database Instance`, - Long: `Upgrade your standalone Redisā„¢ Database Instance node, either by upgrading to a bigger node type (vertical scaling) or by adding more nodes to your Database Instance to increase your number of endpoints and distribute cache (horizontal scaling). Note that scaling horizontally your Redisā„¢ Database Instance will not renew its TLS certificate. In order to refresh the TLS certificate, you must use the Renew TLS certificate endpoint.`, + Long: `Upgrade your Redisā„¢ Database Instance, either by upgrading to a bigger node type (vertical scaling) or by adding more nodes to your Database Instance to increase your number of endpoints and distribute cache (horizontal scaling, available for clusters only). Note that scaling horizontally your Redisā„¢ Database Instance will not renew its TLS certificate. In order to refresh the TLS certificate, you must use the Renew TLS certificate endpoint.`, Namespace: "redis", Resource: "cluster", Verb: "migrate",