docs(wg-easy): cilium part (#33058)

**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
Complete the cilium part and some little details.

⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->
Tested on my cluster.

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ 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
- [x] 📄 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._
This commit is contained in:
Boemeltrein
2025-03-09 17:35:32 +01:00
committed by GitHub
parent 9a6a8507ed
commit 3f8ca712d6
2 changed files with 18 additions and 4 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 17 KiB

+18 -4
View File
@@ -4,6 +4,12 @@ title: How-To
This is a quick how-to or setup-guide to have a local Wireguard server.
:::note[routing]
The best is to have all routing done by a router, including things like VPN routing. Deploy this chart only if you don't have another option.
:::
## Requirements
Domain name (can be free using DuckDNS or any DDNS) that has your current WAN IP, WAN IP not recommended unless you have a static IP.
@@ -19,7 +25,7 @@ The domain you use should not be behind a reverse proxy, such as Cloudflare Prox
### Sysctl
:::note[sysctl]
This part is not needed for CLustertool setup with TalosOS.
This part is not needed for Clustertool setup with TalosOS.
:::
At some OS's it is required to set two `sysctl` values for proper acces to your local network (LAN). Check your OS documentation how this needs to be done.
@@ -95,11 +101,19 @@ If you're creating multiple users setting up Ingress for the Portal/GUI page is
There's a few options in the upstream container that aren't present by default in this chart that can be added as environment values. Please refer to the [upstream](https://github.com/weejewel/wg-easy) documentation as necessary and add those ENV VARS at your discretion without any support.
## Important note for users with Clustertool Setup and WG_Easy
Access Applications running on your Talos Cluster from outside your LAN via WG_Easy, will not work with a standard CLustertool Settup.
This can be made to work with some `Cilium` modifications.
:::warning[Cilium changes]
> TO BE ADDED TO THIS MANUAL
Do this changes at your own risk. Those are not covered by Truecharts Support.
:::
Access Applications running on your Talos Cluster from outside your LAN via WG_Easy, will not work with a standard Clustertool Setup.
This can be made to work with a `Cilium` modification. Add the following to your Cilium deployment `.Values`:
```yaml
socketLB:
hostNamespaceOnly: true
```
## Support