Problem
In Step 3 of the Quick Start ControlPlane guide, the documentation suggests running:
kubectl apply -f controlplane.yaml
This command does not work when it is executed from the repository root because controlplane.yaml is not located in the current directory.
Current Command
kubectl apply -f controlplane.yaml
Correct Manifest Path
The manifest is located at:
deploy/kind/controlplane/controlplane.yaml
Suggested Command
The guide should use the following command:
kubectl apply -f deploy/kind/controlplane/controlplane.yaml
Expected Fix
Update Step 3 of the Quick Start ControlPlane guide to reference the correct manifest path when commands are executed from the repository root.
Problem
In Step 3 of the Quick Start ControlPlane guide, the documentation suggests running:
This command does not work when it is executed from the repository root because
controlplane.yamlis not located in the current directory.Current Command
Correct Manifest Path
The manifest is located at:
Suggested Command
The guide should use the following command:
Expected Fix
Update Step 3 of the Quick Start ControlPlane guide to reference the correct manifest path when commands are executed from the repository root.