diff --git a/docs/tilt-setup.md b/docs/tilt-setup.md index 52a05ac2..3e8448c6 100644 --- a/docs/tilt-setup.md +++ b/docs/tilt-setup.md @@ -4,12 +4,12 @@ This document describes how to use kind and [Tilt][tilt] for a simplified workfl Also, visit the [Cluster API documentation on Tilt][cluster_api_tilt] for more information on how to set up your development environment. [tilt]: https://tilt.dev -[cluster_api_tilt]: https://cluster-api.sigs.k8s.io/developer/tilt.html +[cluster_api_tilt]: https://cluster-api.sigs.k8s.io/developer/core/tilt [capd]: https://github.com/kubernetes-sigs/cluster-api/tree/main/test/infrastructure/docker ## Getting started -1. You need to follow the [Prerequisites in Cluster API documentation on Tilt](https://cluster-api.sigs.k8s.io/developer/tilt.html#prerequisites) to have everything installed. +1. You need to follow the [Prerequisites in Cluster API documentation on Tilt](https://cluster-api.sigs.k8s.io/developer/core/tilt#prerequisites) to have everything installed. 2. Get the source for cluster-api repo @@ -33,7 +33,7 @@ Also, visit the [Cluster API documentation on Tilt][cluster_api_tilt] for more i 4. Create the `tilt-settings.yaml` file and place it in your local copy of `cluster-api`. Here is an example: ```yaml - # refer to https://cluster-api.sigs.k8s.io/developer/tilt.html for documentation + # refer to https://cluster-api.sigs.k8s.io/developer/core/tilt for documentation allowed_contexts: - kind-capi-test trigger_mode: manual # set to auto to enable auto-rebuilding diff --git a/test/e2e/README.md b/test/e2e/README.md index 3c573dd7..0c33d9fa 100644 --- a/test/e2e/README.md +++ b/test/e2e/README.md @@ -1,7 +1,7 @@ # e2e test The e2e test use the [Cluster API test framework](https://pkg.go.dev/sigs.k8s.io/cluster-api/test/framework?tab=doc) and use the [CAPD](https://github.com/kubernetes-sigs/cluster-api/tree/main/test/infrastructure/docker) as the infrastructure provider. Please make sure you have [Docker](https://docs.docker.com/install/) and [kind](https://kind.sigs.k8s.io/) installed. -You could refer to the [Testing Cluster API](https://cluster-api.sigs.k8s.io/developer/testing) for more information. +You could refer to the [Testing Cluster API](https://cluster-api.sigs.k8s.io/developer/core/testing) for more information. ## Run the e2e test The e2e image will be built with tag `dev`. You should build the image first before running the test. @@ -15,7 +15,7 @@ To run a specific e2e test, such as `[PR-Blocking]`, use the `GINKGO_FOCUS` envi make GINKGO_FOCUS="\\[PR-Blocking\\]" test-e2e # only run e2e test with `[PR-Blocking]` in its spec name ``` ## Develop an e2e test -You could refer to [Developing E2E tests](https://cluster-api.sigs.k8s.io/developer/e2e) for a complete guide for developing e2e tests. +You could refer to [Developing E2E tests](https://cluster-api.sigs.k8s.io/developer/core/e2e) for a complete guide for developing e2e tests. A guide for developing a k3s e2e test: