From 91837c561029c81d75c6723236a712a7e9217728 Mon Sep 17 00:00:00 2001 From: David Kornel Date: Tue, 12 Mar 2024 15:07:22 +0100 Subject: [PATCH] Address comments v3 Signed-off-by: David Kornel --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7626f84..b2c3ff3 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ Library for easy testing of Kubernetes deployments and operators using Fabric8 A ## Provided functionality ### Kubernetes resource manager -[KubeResoruceManager](test-frame-common/src/main/java/io/skodjob/testframe/resources/KubeResourceManager.java) provides management of resources created during test phases. -Every Kubernetes resource created by `KubeResoruceManager` is automatically deleted at the end of the test, whether the test passed or failed. +[KubeResourceManager](test-frame-common/src/main/java/io/skodjob/testframe/resources/KubeResourceManager.java) provides management of resources created during test phases. +Every Kubernetes resource created by `KubeResourceManager` is automatically deleted at the end of the test, whether the test passed or failed. So the Kubernetes environment is clean before and after every test run and user do not need to handle it. -Working with Kubernetes resources using `KubeResoruceManager` also provides proper wait for resource readiness. +Working with Kubernetes resources using `KubeResourceManager` also provides proper wait for resource readiness. ### Fabric8 Kubernetes client and CMD client -Instance of `KubeResoruceManager` contains accessible fabric8 kubernetes client and kubernetes cmd client. +Instance of `KubeResourceManager` contains accessible fabric8 kubernetes client and kubernetes cmd client. These clients are initialized and connected to the test cluster based on the configuration provided by the env file, env variables, or kubeconfig. ### Test visual separation @@ -30,7 +30,7 @@ For better clarity regarding the test logs, `TestFrame` library provides ASCII v test-frame-common ``` -2. Use annotations for working with `KubeResoruceManager` or other provided functionality +2. Use annotations for working with `KubeResourceManager` or other provided functionality ```java //... @ResourceManager @@ -40,7 +40,7 @@ class Test { } //... ``` -3. Work with `KubeResoruceManager` and clients +3. Work with `KubeResourceManager` and clients ```java //... @ResourceManager