diff options
| author | R-man3000 <rasmus.luha@gmail.com> | 2026-05-30 21:27:25 +0300 |
|---|---|---|
| committer | R-man3000 <rasmus.luha@gmail.com> | 2026-05-30 21:27:25 +0300 |
| commit | f933430bdc951fbbf64c83ac31357d41846bb69e (patch) | |
| tree | 64bbb0fa8e93e4f2dd239c7b94e3844228cc9cbc | |
| parent | 9275ae9cab7bf659dfb7a74d33e9d03adb3f6ffa (diff) | |
fix heimdall config lookup URL
| -rw-r--r-- | README.md | 18 | ||||
| -rw-r--r-- | apps/heimdall/deployment.yaml | 2 |
2 files changed, 15 insertions, 5 deletions
@@ -1,9 +1,10 @@ ## Prerequisites -docker -kubectl -k3d +Following tools need to be installed and working: +`docker ` +`kubectl ` +`k3d ` -### Docker connectivity +### Networking 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` ``` @@ -12,4 +13,11 @@ The fix was adding dns in `/etc/docker/daemon.json` ... ``` -## TODO +I also added `hemidal.local` to my `/etc/hosts` file for the convenience of using "localhost" in the browser URL +``` +127.0.0.1 localhost ... ... ... hemidall.local +``` + +## Usage - TODO +- run the setup_script.sh +- open `localhost:8080` on yout browser diff --git a/apps/heimdall/deployment.yaml b/apps/heimdall/deployment.yaml index 38b4122..4f942a3 100644 --- a/apps/heimdall/deployment.yaml +++ b/apps/heimdall/deployment.yaml @@ -26,6 +26,8 @@ spec: value: "1000" - name: PGID value: "1000" + - name: APP_URL + value: "http://heimdall.local:8080" #volumes: #- name: heimdall-config # hostPath: |
