From 6d6ed98c92e81ed2e13c78487e4363a4500ea34c Mon Sep 17 00:00:00 2001 From: Ali Abbasi Alaei Date: Sat, 14 Mar 2026 20:03:52 -0400 Subject: [PATCH] Replace self-referenced links with relative paths --- README.md | 2 +- docs/book/src/examples/cni-readiness.md | 2 +- docs/book/src/examples/constrained-impersonation.md | 2 +- docs/book/src/examples/security-agent-readiness.md | 2 +- docs/book/src/user-guide/installation.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3610bfb..0e8178a 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ spec: node-role.kubernetes.io/worker: "" ``` -Find a more detailed walkthrough of setting up Node Readiness Controller in your Kind cluster [here](https://github.com/kubernetes-sigs/node-readiness-controller/blob/main/docs/TEST_README.md). +Find a more detailed walkthrough of setting up Node Readiness Controller in your Kind cluster [here](docs/TEST_README.md). ## High-level Roadmap diff --git a/docs/book/src/examples/cni-readiness.md b/docs/book/src/examples/cni-readiness.md index f616787..56035db 100644 --- a/docs/book/src/examples/cni-readiness.md +++ b/docs/book/src/examples/cni-readiness.md @@ -16,7 +16,7 @@ The high-level steps are: This example uses **Calico**, but the pattern applies to any CNI. -> **Note**: You can find all the manifests used in this guide in the [`examples/cni-readiness`](https://github.com/kubernetes-sigs/node-readiness-controller/tree/main/examples/cni-readiness) directory. +> **Note**: You can find all the manifests used in this guide in the [`examples/cni-readiness`](../../../../examples/cni-readiness) directory. ### 1. Deploy the Readiness Condition Reporter diff --git a/docs/book/src/examples/constrained-impersonation.md b/docs/book/src/examples/constrained-impersonation.md index a6f5e98..3810dac 100644 --- a/docs/book/src/examples/constrained-impersonation.md +++ b/docs/book/src/examples/constrained-impersonation.md @@ -8,7 +8,7 @@ This guide walks through a CNI readiness example that uses constrained impersona > **Prerequisites**: Kubernetes v1.35+ with the `ConstrainedImpersonation` feature gate enabled, or v1.36+ where it is Beta and enabled by default. -> **Note**: You can find all the manifests used in this guide in the [`examples/constrained-impersonation`](https://github.com/kubernetes-sigs/node-readiness-controller/tree/main/examples/constrained-impersonation) directory. +> **Note**: You can find all the manifests used in this guide in the [`examples/constrained-impersonation`](../../../../examples/constrained-impersonation) directory. ## Step-by-Step Guide diff --git a/docs/book/src/examples/security-agent-readiness.md b/docs/book/src/examples/security-agent-readiness.md index c4a1852..22b4369 100644 --- a/docs/book/src/examples/security-agent-readiness.md +++ b/docs/book/src/examples/security-agent-readiness.md @@ -22,7 +22,7 @@ We can use the Node Readiness Controller to enforce a security readiness guardra This example uses **Falco** as a representative security agent, but the same pattern applies to any node-level security or monitoring agent. -> **Note**: All manifests referenced in this guide are available in the [`examples/security-agent-readiness`](https://github.com/kubernetes-sigs/node-readiness-controller/tree/main/examples/security-agent-readiness) directory. +> **Note**: All manifests referenced in this guide are available in the [`examples/security-agent-readiness`](../../../../examples/security-agent-readiness) directory. diff --git a/docs/book/src/user-guide/installation.md b/docs/book/src/user-guide/installation.md index df5a901..e52e5e8 100644 --- a/docs/book/src/user-guide/installation.md +++ b/docs/book/src/user-guide/installation.md @@ -74,7 +74,7 @@ kubectl apply -k config/crd kubectl apply -k config/default ``` -You can enable optional components (Metrics, TLS, Webhook) by creating a `kustomization.yaml` that includes the relevant components from the `config/` directory. For reference on how these components can be combined, see the `deploy-with-metrics`, `deploy-with-tls`, `deploy-with-webhook`, and `deploy-full` targets in the projects [`Makefile`](https://github.com/kubernetes-sigs/node-readiness-controller/blob/main/Makefile). +You can enable optional components (Metrics, TLS, Webhook) by creating a `kustomization.yaml` that includes the relevant components from the `config/` directory. For reference on how these components can be combined, see the `deploy-with-metrics`, `deploy-with-tls`, `deploy-with-webhook`, and `deploy-full` targets in the projects [`Makefile`](../../../../Makefile). ---