From 9275ae9cab7bf659dfb7a74d33e9d03adb3f6ffa Mon Sep 17 00:00:00 2001 From: R-man3000 Date: Sat, 30 May 2026 21:27:06 +0300 Subject: add docker dns fix --- README.md | 8 ++++++++ roadmap.md | 35 ----------------------------------- setup_script.sh | 3 +-- 3 files changed, 9 insertions(+), 37 deletions(-) delete mode 100644 roadmap.md diff --git a/README.md b/README.md index 8fd14ee..ec1978f 100644 --- a/README.md +++ b/README.md @@ -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 -- cgit v1.2.3