From 55f34f65f1bf13c03c79f17627ab40c5c63f7a1e Mon Sep 17 00:00:00 2001 From: Willow Carretero Chavez Date: Mon, 29 Jul 2024 19:14:44 +0000 Subject: [PATCH] Fix kind capitalization --- e2e/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/e2e/README.md b/e2e/README.md index 47f78cee3..d4394c274 100644 --- a/e2e/README.md +++ b/e2e/README.md @@ -1,6 +1,6 @@ -# End-to-end tests for konnectivity-network-proxy running in a KinD cluster +# End-to-end tests for konnectivity-network-proxy running in a kind cluster -These e2e tests deploy the KNP agent and server to a local [KinD](https://kind.sigs.k8s.io/) +These e2e tests deploy the KNP agent and server to a local [kind](https://kind.sigs.k8s.io/) cluster to verify their functionality. These can be run automatically using `make e2e-test`. @@ -10,7 +10,7 @@ These can be run automatically using `make e2e-test`. Before any of the actual tests are run, the `TestMain()` function in `main_test.go` performs the following set up steps: -- Spin up a new KinD cluster with the node image provided by the `-kind-image` flag. +- Spin up a new kind cluster with the node image provided by the `-kind-image` flag. - Sideload the KNP agent and server images provided with `-agent-image` and `-server-image` into the cluster. - Deploy the necessary RBAC and service templates for both the KNP agent and server (see `renderAndApplyManifests`). @@ -18,6 +18,6 @@ in `main_test.go` performs the following set up steps: ### `static_count_test.go` -These tests deploy the KNP servers and agents to the previously created KinD cluster. +These tests deploy the KNP servers and agents to the previously created kind cluster. After the deployments are up, the tests check that both the agent and server report the correct number of connections on their metrics endpoints.