From 113a0f44ca72e83291ab7700cdac2abedddf9c9b Mon Sep 17 00:00:00 2001 From: drivebyer Date: Fri, 6 Oct 2023 11:53:57 +0800 Subject: [PATCH 1/3] fix kuttl timeout unit to second Signed-off-by: drivebyer --- tests/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/readme.md b/tests/readme.md index 155b89fb3..af2479b25 100644 --- a/tests/readme.md +++ b/tests/readme.md @@ -38,5 +38,5 @@ Please refer to the repository's README for detailed instructions on installing Execute the kuttl test using the following command: ```bash -kubectl kuttl test redis-operator/tests/e2e/v1beta2 --config /redis-operator/tests/_config/kuttl-test.yaml --timeout 10m +kubectl kuttl test redis-operator/tests/e2e/v1beta2 --config /redis-operator/tests/_config/kuttl-test.yaml --timeout 600 ``` From 56fe68b7a5d32e1dde9709c5637fcd684f15220f Mon Sep 17 00:00:00 2001 From: drivebyer Date: Fri, 6 Oct 2023 11:56:44 +0800 Subject: [PATCH 2/3] fix assert rediscluster version Signed-off-by: drivebyer --- tests/e2e/v1beta2/setup/ready-cluster.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/v1beta2/setup/ready-cluster.yaml b/tests/e2e/v1beta2/setup/ready-cluster.yaml index 57d53c708..54077ef06 100644 --- a/tests/e2e/v1beta2/setup/ready-cluster.yaml +++ b/tests/e2e/v1beta2/setup/ready-cluster.yaml @@ -1,4 +1,4 @@ -apiVersion: redis.redis.opstreelabs.in/v1beta1 +apiVersion: redis.redis.opstreelabs.in/v1beta2 kind: RedisCluster metadata: name: redis-cluster-v1beta2 From b365222f8a1282246dbfc6062deff7d933dbb0ed Mon Sep 17 00:00:00 2001 From: Shubham Gupta <69793468+shubham-cmyk@users.noreply.github.com> Date: Fri, 6 Oct 2023 10:56:46 +0530 Subject: [PATCH 3/3] Update readme.md --- tests/readme.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/readme.md b/tests/readme.md index af2479b25..5538aa670 100644 --- a/tests/readme.md +++ b/tests/readme.md @@ -13,8 +13,6 @@ Ensure you have the following tools installed: ## **Steps** -### **1. Set Up a 3-node Kind Cluster** - ## Steps to Follow ### 1. Set Up a 3-node Kind Cluster @@ -22,7 +20,7 @@ Ensure you have the following tools installed: Create a 3-node kind cluster using the provided configuration: ```bash -kind create cluster --config /redis-operator/tests/_config/kind-example-config.yaml +kind create cluster --config /redis-operator/tests/_config/kind-config.yaml ``` ### 2. Install the Redis Operator