From a328eb069fe0c546bae5d176be1e73d179c29fe7 Mon Sep 17 00:00:00 2001 From: Alex <5896622+cyxou@users.noreply.github.com> Date: Sat, 28 Oct 2023 21:40:12 +0300 Subject: [PATCH] wg-easy: set default MTU to 1280 (#64) With the default value of 1420 I had problems opening duckduckgo and github websites. --- charts/wg-easy/Chart.yaml | 2 +- charts/wg-easy/values.yaml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/wg-easy/Chart.yaml b/charts/wg-easy/Chart.yaml index 3d975d8..e911f2d 100644 --- a/charts/wg-easy/Chart.yaml +++ b/charts/wg-easy/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: wg-easy description: | The easiest way to run WireGuard VPN + Web-based Admin UI. -version: 1.3.1 +version: 1.4.0 appVersion: "7" kubeVersion: ">=1.16.0-0" type: application diff --git a/charts/wg-easy/values.yaml b/charts/wg-easy/values.yaml index 3a215f8..b10f62c 100644 --- a/charts/wg-easy/values.yaml +++ b/charts/wg-easy/values.yaml @@ -17,6 +17,8 @@ env: WG_HOST: '{{ default .Values.hostIP .Values.wgHost }}' WG_PORT: '{{ default 51820 .Values.wgPort }}' WG_DEFAULT_ADDRESS: 10.6.0.x + # WireGuard interface MTU for devices. 1280 is a safe bet for most networks + WG_MTU: 1280 # Host should provide DNS service via Pi-Hole WG_DEFAULT_DNS: '{{ .Values.hostIP }}'