Development

The following instructions are for development purposes.

  1. Clone the Cluster API Repo into the GOPATH

    Why clone into the GOPATH? There have been historic issues with code generation tools when they are run outside the go path

  2. Fork the Cluster API Provider RKE2 repo

  3. Clone your new repo into the GOPATH (i.e. ~/go/src/github.com/yourname/cluster-api-provider-rke2)

  4. Ensure Tilt and kind are installed

  5. Create a tilt-settings.json file in the root of the directory where you cloned the Cluster API repo in step 1.

  6. Add the following contents to the file (replace /path/to/clone/of/ with appropriate file path and "yourname" with your github account name):

    {
        "default_registry": "ghcr.io/yourname",
        "provider_repos": ["/path/to/clone/of/github.com/yourname/cluster-api-provider-rke2"],
        "enable_providers": ["docker", "rke2-bootstrap", "rke2-control-plane"],
        "kustomize_substitutions": {
            "EXP_MACHINE_POOL": "true",
            "EXP_CLUSTER_RESOURCE_SET": "true"
        },
        "extra_args": {
            "rke2-bootstrap": ["--v=4"],
            "rke2-control-plane": ["--v=4"],
            "core": ["--v=4"]
        },
        "debug": {
            "rke2-bootstrap": {
                "continue": true,
                "port": 30001
            },
            "rke2-control-plane": {
                "continue": true,
                "port": 30002
            }
        }
    }
    
  7. Open another terminal (or pane) and go to the cluster-api directory.

  8. Run the following to create a configuration for kind:

    cat > kind-cluster-with-extramounts.yaml <<EOF
    kind: Cluster
    apiVersion: kind.x-k8s.io/v1alpha4
    name: capi-test
    nodes:
    - role: control-plane
      extraMounts:
        - hostPath: /var/run/docker.sock
          containerPath: /var/run/docker.sock
    EOF
    

    NOTE: if you are using Docker Desktop v4.13 or above then you will encounter issues from here. Until a permanent solution is found its recommended you use v4.12

  9. Run the following command to create a local kind cluster:

    kind create cluster --config kind-cluster-with-extramounts.yaml
    
  10. Now start tilt by running the following command in the directory where you cloned Cluster API repo in step 1:

    tilt up
    
  11. Press the space key to see the Tilt web ui and check that everything goes green.

Attaching the debugger

This section explains how to attach debugger to the CAPRKE2 process running in a pod started using above steps. By connecting a debugger to this process, you would be able to step through the code through your IDE. This guide covers two popular IDEs - IntelliJ GoLand and VS Code.

On the Tilt web UI and confirm the port on which caprke2_controller is exposed. By default, it should be localhost:30001.

GoLand

  1. Go to Run -> Edit Configurations.
  2. In the dialog box that opens up, add a new configuration by clicking on + sign in top left and selecting 'Go Remote'.
  3. Enter the 'Host' and 'Port' values based on where caprke2_controller is exposed.

VS Code

  1. If you don't already have a launch.json setup, go to 'Run and Debug' in the Activity Bar and click on 'create a launch.json file'. Press the escape key; you'll be presented with the newly created launch.json file. Alternatively, create a .vscode directory in the root of your git repo and create alaunch.json file in it.
  2. Insert the following configuration in the file:
    {
        "version": "0.2.0",
        "configurations": [
            {
                "name": "Connect to server",
                "type": "go",
                "request": "attach",
                "mode": "remote",
                "remotePath": "${workspaceFolder}",
                "port": 30002,
                "host": "127.0.0.1"
            }
        ]
    }
    

Insert a breakpoint, e.g., in the updateStatus method which responsible for updating the status of the RKE2ControlPlane resource and run the configuration. To check if you can step into the code, create a workload cluster by using the example provided in the documentation. If things were configured correctly, code execution would halt at the breakpoint and you should be able to step through it.

Troubleshooting

Doing tilt up should install a bunch of resources in the underlying kind cluster. If you don't see anything there, run tilt logs in a separate terminal without stopping the tilt up command that you originally started.

Common Issues

  1. Make sure you run the kind and tilt commands mentioned above from correct directory.
  2. A go mod vendor might be required in your clone of CAPI repo. tilt logs should make this obvious.