From e95c49201d388b8f6cb5da21060cff215deb7620 Mon Sep 17 00:00:00 2001 From: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com> Date: Tue, 15 Apr 2025 21:42:45 +0200 Subject: [PATCH] fix(clustertool): clusterenv example (#34402) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** NGINX_INTERNAL_IP and NGINX_EXTERNAL_IP where not in the example inside the METALLB range. ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --- clustertool/embed/generic/base/clusterenv.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/clustertool/embed/generic/base/clusterenv.yaml b/clustertool/embed/generic/base/clusterenv.yaml index 5c15e1bba30..cbb788520a6 100644 --- a/clustertool/embed/generic/base/clusterenv.yaml +++ b/clustertool/embed/generic/base/clusterenv.yaml @@ -8,14 +8,15 @@ MASTER1IP: 192.168.20.210 GATEWAY: 192.168.20.1 # Defines the ip range metallb is allowed to use METALLB_RANGE: 192.168.20.211-192.168.20.219 +## IP's for NGINX, BLOCKY and DASHBOARD. Has to be within METALLB_RANGE and not in use # IP NGINX will use for exposing ingress-resources. Internal refers to LAN-only NGINX ingress, dont port-forward at router -NGINX_INTERNAL_IP: 192.168.20.221 +NGINX_INTERNAL_IP: 192.168.20.211 # IP NGINX will use for exposing ingress-resources. Internal refers to LAN-and-WAN NGINX ingress, DO port-forward at router -NGINX_EXTERNAL_IP: 192.168.20.222 +NGINX_EXTERNAL_IP: 192.168.20.212 # IP Blocky DNS will be exposed on -BLOCKY_IP: 192.168.20.212 -# Sets the Kubernetes Dashboard IP. Has to be within METALLB_RANGE and not in use -DASHBOARD_IP: 192.168.20.213 +BLOCKY_IP: 192.168.20.213 +# Sets the Kubernetes Dashboard IP +DASHBOARD_IP: 192.168.20.214 ## Configures Traefik, ClusterIssuer and Blocky for said domain, using these credentials # domain is the base/highest level of your domain, so without subdomain, example: truecharts.org, not somesite.truecharts.org # To disable, please see the comments in their respective helm-values.yaml files!