Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note on devcontainer building #304

Merged
merged 2 commits into from
Feb 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,21 @@ Kindev will be installed in the `.kind` folder.
Vscode handles all port-forwarding automagically, so kindev and all endpoints will be available all the same from the host.
Simply point `KUBECONFIG` to `.kind/.kind/kind-config` and use `kubectl` as usual.

> [!NOTE]
> On linux, Podman and rootless Docker have been found to cause issues.
> Ensure that you are using **rootful Docker** to save yourself loads of trouble.
>
> Additionally, on Fedora, you might encounter issues with `iptables`.
> Execute the following on the host prior to building the devcontainer:
> ```bash
> sudo dnf install -y iptables-legacy
> sudo modprobe ip_tables
> echo 'ip_tables' | sudo tee /etc/modules
> ```
>
> *To further debug dind, consult `/tmp/dockerd.log` in the container.*
> Please refer to official documentation under: https://docs.docker.com/engine/install/

### Devcontainer customizations

It's possible to customize the devcontainer.
Expand Down
Loading