diff options
| author | R-man3000 <rasmus.luha@gmail.com> | 2026-05-30 21:27:06 +0300 |
|---|---|---|
| committer | R-man3000 <rasmus.luha@gmail.com> | 2026-05-30 21:27:06 +0300 |
| commit | 9275ae9cab7bf659dfb7a74d33e9d03adb3f6ffa (patch) | |
| tree | 9d334bb5830d58a5e4d7b3acaf4280c17f772d68 | |
| parent | 188a8eafd139f4cc15cf39584f9092e464a2fdf0 (diff) | |
add docker dns fix
| -rw-r--r-- | README.md | 8 | ||||
| -rw-r--r-- | roadmap.md | 35 | ||||
| -rw-r--r-- | setup_script.sh | 3 |
3 files changed, 9 insertions, 37 deletions
@@ -3,5 +3,13 @@ docker kubectl k3d +### Docker connectivity +For me, using `Fedora`, i was not able to access internet from my k8s cluster initally. +The fix was adding dns in `/etc/docker/daemon.json` +``` +{ + "dns": ["8.8.8.8", "1.1.1.1"], + ... +``` ## TODO diff --git a/roadmap.md b/roadmap.md deleted file mode 100644 index ee7e667..0000000 --- a/roadmap.md +++ /dev/null @@ -1,35 +0,0 @@ -Laptop (Fedora) - |_ Docker - |_ k3d cluster - |_ ingress-nginx - sample app - ArgoCD - Prometheus/Grafana - CI/CD - - -homelab-platform/ -├── README.md -├── docs/ -│ ├── architecture.md -│ ├── networking.md -│ └── troubleshooting.md -├── bootstrap/ -│ ├── create-cluster.sh -│ └── install-argocd.sh -├── clusters/ -│ └── local-dev/ -│ ├── apps.yaml -│ └── infra.yaml -├── apps/ -│ ├── sample-app/ -│ └── whoami/ -├── infrastructure/ -│ ├── ingress-nginx/ -│ ├── prometheus/ -│ ├── grafana/ -│ └── argocd/ -├── helm-values/ -├── scripts/ -├── .github/workflows/ -└── screenshots/ diff --git a/setup_script.sh b/setup_script.sh index 222037d..68792cd 100644 --- a/setup_script.sh +++ b/setup_script.sh @@ -4,6 +4,5 @@ k3d cluster create mycluster --agents 2 -p "8080:80@loadbalancer" --k3s-arg "--d ## Install ingress kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/cloud/deploy.yaml - ## Create namespaces -kubectl creat ns heimdall +kubectl create ns heimdall |
