Skip to content

Commit bfecbcd

Browse files
authored
Merge pull request #618 from xrstf/fix-kcp-spelling
2 parents bb7ad81 + 27adfd9 commit bfecbcd

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ Version v0.5.0 includes significant architectural improvements to the API struct
4343
### Backend Architecture Improvements
4444

4545
- **MultiCluster Runtime Integration**: The backend now leverages `sigs.k8s.io/multicluster-runtime` for enhanced cluster management capabilities
46-
- **Provider Support**: Built-in support for multiple backend providers including KCP through `github.com/kcp-dev/multicluster-provider`
46+
- **Provider Support**: Built-in support for multiple backend providers including kcp through `github.com/kcp-dev/multicluster-provider`
4747
- **Enhanced Cluster Operations**: Improved cluster-aware resource management with dedicated manager architecture for handling multi-cluster scenarios

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,13 +290,13 @@ run-kcp: install-kcp
290290
$(KCP) start --bind-address=127.0.0.1
291291

292292
.PHONY: run-kcp-infra
293-
run-kcp-infra: install-kcp $(DEX_BINARY) ## Run KCP infrastructure for e2e tests (blocking)
293+
run-kcp-infra: install-kcp $(DEX_BINARY) ## Run kcp infrastructure for e2e tests (blocking)
294294
mkdir -p .kcp
295295
$(MAKE) run-dex 2>&1 & DEX_PID=$$!; \
296296
$(MAKE) run-kcp &>.kcp/kcp.log & KCP_PID=$$!; \
297297
trap 'kill -TERM $$DEX_PID $$KCP_PID; rm -rf .kcp' TERM INT EXIT && \
298298
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 && \
299-
echo "KCP is ready. Press Ctrl+C to stop." && \
299+
echo "kcp is ready. Press Ctrl+C to stop." && \
300300
wait $$KCP_PID
301301

302302
.PHONY: test-e2e-only
@@ -306,7 +306,7 @@ endif
306306
test-e2e-only: TEST_ARGS ?=
307307
test-e2e-only: WORK_DIR ?= .
308308
test-e2e-only: WHAT ?= ./test/e2e...
309-
test-e2e-only: build ## Run e2e tests against existing KCP infrastructure
309+
test-e2e-only: build ## Run e2e tests against existing kcp infrastructure
310310
KUBECONFIG=$$PWD/.kcp/admin.kubeconfig GOOS=$(OS) GOARCH=$(ARCH) $(GO_TEST) -race -v -count $(COUNT) $(E2E_PARALLELISM_FLAG) $(WHAT) $(TEST_ARGS)
311311

312312
.PHONY: test-e2e

contrib/kcp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ all: build
2828
install-apigen:
2929
@GO_MODULE=true $(ROOT_DIR)/hack/uget.sh github.com/kcp-dev/sdk/cmd/apigen apigen $(KCP_APIGEN_VERSION)
3030

31-
codegen: ## Generate KCP API resources from CRDs
31+
codegen: ## Generate kcp API resources from CRDs
3232
./hack/update-kcp-codegen.sh

docs/content/developers/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ The end-to-end test validates the complete binding and synchronization flow:
209209

210210
### Setup Phase
211211

212-
1. **Create provider workspace (KCP)**
212+
1. **Create provider workspace (kcp)**
213213
- Install kube-bind CRDs
214214
- Start backend server (HTTP API for binding)
215215
- Bootstrap example CRDs (Cowboys/Sheriffs)

test/e2e/bind/happy-case_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func TestNamespacedScoped(t *testing.T) {
9292
// SETUP PHASE
9393
// ===========
9494
// ┌──────────────────────────────────────────────────────────────────────────┐
95-
// │ 1. Create provider workspace (KCP) │
95+
// │ 1. Create provider workspace (kcp) │
9696
// │ - Install kube-bind CRDs │
9797
// │ - Start backend server (HTTP API for binding) │
9898
// │ - Bootstrap example CRDs (Cowboys/Sheriffs) via examples.Bootstrap() │

0 commit comments

Comments
 (0)