From 27adfd91a4085fe09e2caa500da05bb3ed78f629 Mon Sep 17 00:00:00 2001 From: Christoph Mewes Date: Wed, 26 Aug 2026 15:17:03 +0200 Subject: [PATCH] fix kcp spelling On-behalf-of: @SAP christoph.mewes@sap.com Signed-off-by: Christoph Mewes --- CHANGELOG.md | 2 +- Makefile | 6 +++--- contrib/kcp/Makefile | 2 +- docs/content/developers/architecture.md | 2 +- test/e2e/bind/happy-case_test.go | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c557c731e..844dd654e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,5 +43,5 @@ Version v0.5.0 includes significant architectural improvements to the API struct ### Backend Architecture Improvements - **MultiCluster Runtime Integration**: The backend now leverages `sigs.k8s.io/multicluster-runtime` for enhanced cluster management capabilities -- **Provider Support**: Built-in support for multiple backend providers including KCP through `github.com/kcp-dev/multicluster-provider` +- **Provider Support**: Built-in support for multiple backend providers including kcp through `github.com/kcp-dev/multicluster-provider` - **Enhanced Cluster Operations**: Improved cluster-aware resource management with dedicated manager architecture for handling multi-cluster scenarios diff --git a/Makefile b/Makefile index 57af483ad..17389061c 100644 --- a/Makefile +++ b/Makefile @@ -290,13 +290,13 @@ run-kcp: install-kcp $(KCP) start --bind-address=127.0.0.1 .PHONY: run-kcp-infra -run-kcp-infra: install-kcp $(DEX_BINARY) ## Run KCP infrastructure for e2e tests (blocking) +run-kcp-infra: install-kcp $(DEX_BINARY) ## Run kcp infrastructure for e2e tests (blocking) mkdir -p .kcp $(MAKE) run-dex 2>&1 & DEX_PID=$$!; \ $(MAKE) run-kcp &>.kcp/kcp.log & KCP_PID=$$!; \ trap 'kill -TERM $$DEX_PID $$KCP_PID; rm -rf .kcp' TERM INT EXIT && \ echo "Waiting for kcp to be ready (check .kcp/kcp.log)." && while ! KUBECONFIG=.kcp/admin.kubeconfig kubectl get --raw /readyz &>/dev/null; do sleep 1; echo -n "."; done && echo && \ - echo "KCP is ready. Press Ctrl+C to stop." && \ + echo "kcp is ready. Press Ctrl+C to stop." && \ wait $$KCP_PID .PHONY: test-e2e-only @@ -306,7 +306,7 @@ endif test-e2e-only: TEST_ARGS ?= test-e2e-only: WORK_DIR ?= . test-e2e-only: WHAT ?= ./test/e2e... -test-e2e-only: build ## Run e2e tests against existing KCP infrastructure +test-e2e-only: build ## Run e2e tests against existing kcp infrastructure KUBECONFIG=$$PWD/.kcp/admin.kubeconfig GOOS=$(OS) GOARCH=$(ARCH) $(GO_TEST) -race -v -count $(COUNT) $(E2E_PARALLELISM_FLAG) $(WHAT) $(TEST_ARGS) .PHONY: test-e2e diff --git a/contrib/kcp/Makefile b/contrib/kcp/Makefile index a03b5cfd3..a3eb6dec6 100644 --- a/contrib/kcp/Makefile +++ b/contrib/kcp/Makefile @@ -28,5 +28,5 @@ all: build install-apigen: @GO_MODULE=true $(ROOT_DIR)/hack/uget.sh github.com/kcp-dev/sdk/cmd/apigen apigen $(KCP_APIGEN_VERSION) -codegen: ## Generate KCP API resources from CRDs +codegen: ## Generate kcp API resources from CRDs ./hack/update-kcp-codegen.sh diff --git a/docs/content/developers/architecture.md b/docs/content/developers/architecture.md index dc9c62ea0..cd0ba4777 100644 --- a/docs/content/developers/architecture.md +++ b/docs/content/developers/architecture.md @@ -209,7 +209,7 @@ The end-to-end test validates the complete binding and synchronization flow: ### Setup Phase -1. **Create provider workspace (KCP)** +1. **Create provider workspace (kcp)** - Install kube-bind CRDs - Start backend server (HTTP API for binding) - Bootstrap example CRDs (Cowboys/Sheriffs) diff --git a/test/e2e/bind/happy-case_test.go b/test/e2e/bind/happy-case_test.go index 2039514c4..88bbe675d 100644 --- a/test/e2e/bind/happy-case_test.go +++ b/test/e2e/bind/happy-case_test.go @@ -92,7 +92,7 @@ func TestNamespacedScoped(t *testing.T) { // SETUP PHASE // =========== // ┌──────────────────────────────────────────────────────────────────────────┐ -// │ 1. Create provider workspace (KCP) │ +// │ 1. Create provider workspace (kcp) │ // │ - Install kube-bind CRDs │ // │ - Start backend server (HTTP API for binding) │ // │ - Bootstrap example CRDs (Cowboys/Sheriffs) via examples.Bootstrap() │