Browse Source

wg-easy - fix allowed IPs ref, label and remove immutable flag from hostPath (#1835)

Stavros Kois 1 year ago
parent
commit
3b6bac2cf7

+ 3 - 3
library/ix-dev/charts/wg-easy/Chart.lock

@@ -1,6 +1,6 @@
 dependencies:
 - name: common
   repository: file://../../../common
-  version: 1.2.3
-digest: sha256:e6ff49b06bf5d4d159e505ae6d153f36cd46170bb519caf90462cd5caebfd0fb
-generated: "2023-11-08T20:13:57.295656002+02:00"
+  version: 1.2.4
+digest: sha256:47ebfd41bc2ac33ab6989e7bd4d1d3aea662365fffa8b525a24cc56a2a35c174
+generated: "2023-12-04T10:51:29.293485947+02:00"

+ 2 - 2
library/ix-dev/charts/wg-easy/Chart.yaml

@@ -3,7 +3,7 @@ description: WG-Easy is the easiest way to install & manage WireGuard!
 annotations:
   title: WG Easy
 type: application
-version: 2.0.1
+version: 2.0.2
 apiVersion: v2
 appVersion: "7"
 kubeVersion: ">=1.16.0-0"
@@ -14,7 +14,7 @@ maintainers:
 dependencies:
   - name: common
     repository: file://../../../common
-    version: 1.2.3
+    version: 1.2.4
 home: https://github.com/WeeJeWel/wg-easy
 icon: https://media.sys.truenas.net/apps/wg-easy/icons/icon.png
 sources:

BIN
library/ix-dev/charts/wg-easy/charts/common-1.2.3.tgz


BIN
library/ix-dev/charts/wg-easy/charts/common-1.2.4.tgz


+ 1 - 3
library/ix-dev/charts/wg-easy/questions.yaml

@@ -28,7 +28,7 @@ questions:
       type: dict
       attrs:
         - variable: udpPort
-          label: Web Port
+          label: UDP Port
           description: The port for the WG-Easy Wireguard service.
           schema:
             type: int
@@ -251,7 +251,6 @@ questions:
                       schema:
                         type: hostpath
                         show_if: [["aclEnable", "=", false]]
-                        immutable: true
                         required: true
         - variable: additionalStorages
           label: Additional Storage
@@ -321,7 +320,6 @@ questions:
                             schema:
                               type: hostpath
                               show_if: [["aclEnable", "=", false]]
-                              immutable: true
                               required: true
                     - variable: ixVolumeConfig
                       label: ixVolume Configuration

+ 1 - 1
library/ix-dev/charts/wg-easy/templates/_wgeasy.tpl

@@ -31,7 +31,7 @@ workload:
             WG_MTU: {{ .Values.wgConfig.clientMTU }}
             WG_DEFAULT_ADDRESS: {{ .Values.wgConfig.clientAddressRange }}
             WG_DEFAULT_DNS: {{ .Values.wgConfig.clientDNSServer }}
-            WG_ALLOWED_IPS: {{ join "," .Values.wgConfig.clientAllowedIPs | default "0.0.0.0/0,::/0" | quote }}
+            WG_ALLOWED_IPS: {{ join "," .Values.wgConfig.allowedIPs | default "0.0.0.0/0,::/0" | quote }}
           fixedEnv:
             PUID: 0
           {{ with .Values.wgConfig.additionalEnvs }}