summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--roadmap.md35
-rw-r--r--setup_script.sh3
3 files changed, 9 insertions, 37 deletions
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