diff --git a/incubator/testbed/7.0.13/CHANGELOG.md b/incubator/testbed/7.0.13/CHANGELOG.md
deleted file mode 100644
index 1692e1a85c..0000000000
--- a/incubator/testbed/7.0.13/CHANGELOG.md
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-### [testbed-7.0.13](https://github.com/truecharts/apps/compare/testbed-7.0.12...testbed-7.0.13) (2021-09-13)
-
diff --git a/incubator/testbed/7.0.14/CHANGELOG.md b/incubator/testbed/7.0.14/CHANGELOG.md
new file mode 100644
index 0000000000..1b35d1eec3
--- /dev/null
+++ b/incubator/testbed/7.0.14/CHANGELOG.md
@@ -0,0 +1,8 @@
+
+
+### [testbed-7.0.14](https://github.com/truecharts/apps/compare/testbed-7.0.13...testbed-7.0.14) (2021-09-13)
+
+#### Fix
+
+* make sure questions.yaml includes are actually included
+
diff --git a/incubator/testbed/7.0.13/CONFIG.md b/incubator/testbed/7.0.14/CONFIG.md
similarity index 100%
rename from incubator/testbed/7.0.13/CONFIG.md
rename to incubator/testbed/7.0.14/CONFIG.md
diff --git a/incubator/testbed/7.0.13/Chart.lock b/incubator/testbed/7.0.14/Chart.lock
similarity index 78%
rename from incubator/testbed/7.0.13/Chart.lock
rename to incubator/testbed/7.0.14/Chart.lock
index 0b97b4e9cb..f519d4b7d1 100644
--- a/incubator/testbed/7.0.13/Chart.lock
+++ b/incubator/testbed/7.0.14/Chart.lock
@@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 7.0.12
digest: sha256:0e777e12a20c9a11423997f23899ddaa5c10f0d201b73bb3cdb30b8e7a656ed0
-generated: "2021-09-13T08:47:49.976198849Z"
+generated: "2021-09-13T08:54:32.94519512Z"
diff --git a/incubator/testbed/7.0.13/Chart.yaml b/incubator/testbed/7.0.14/Chart.yaml
similarity index 97%
rename from incubator/testbed/7.0.13/Chart.yaml
rename to incubator/testbed/7.0.14/Chart.yaml
index f4aac385f6..60a5c571f3 100644
--- a/incubator/testbed/7.0.13/Chart.yaml
+++ b/incubator/testbed/7.0.14/Chart.yaml
@@ -24,4 +24,4 @@ name: testbed
sources:
- https://github.com/Jackett/Jackett
type: application
-version: 7.0.13
+version: 7.0.14
diff --git a/incubator/testbed/7.0.13/README.md b/incubator/testbed/7.0.14/README.md
similarity index 100%
rename from incubator/testbed/7.0.13/README.md
rename to incubator/testbed/7.0.14/README.md
diff --git a/incubator/testbed/7.0.13/app-readme.md b/incubator/testbed/7.0.14/app-readme.md
similarity index 100%
rename from incubator/testbed/7.0.13/app-readme.md
rename to incubator/testbed/7.0.14/app-readme.md
diff --git a/incubator/testbed/7.0.13/charts/common-7.0.12.tgz b/incubator/testbed/7.0.14/charts/common-7.0.12.tgz
similarity index 100%
rename from incubator/testbed/7.0.13/charts/common-7.0.12.tgz
rename to incubator/testbed/7.0.14/charts/common-7.0.12.tgz
diff --git a/incubator/testbed/7.0.13/helm-values.md b/incubator/testbed/7.0.14/helm-values.md
similarity index 100%
rename from incubator/testbed/7.0.13/helm-values.md
rename to incubator/testbed/7.0.14/helm-values.md
diff --git a/incubator/testbed/7.0.13/ix_values.yaml b/incubator/testbed/7.0.14/ix_values.yaml
similarity index 100%
rename from incubator/testbed/7.0.13/ix_values.yaml
rename to incubator/testbed/7.0.14/ix_values.yaml
diff --git a/incubator/testbed/7.0.13/questions.yaml b/incubator/testbed/7.0.14/questions.yaml
similarity index 91%
rename from incubator/testbed/7.0.13/questions.yaml
rename to incubator/testbed/7.0.14/questions.yaml
index b8ec02de02..3001b9d29a 100644
--- a/incubator/testbed/7.0.13/questions.yaml
+++ b/incubator/testbed/7.0.14/questions.yaml
@@ -1345,4 +1345,124 @@ questions:
type: int
default: 80
-# Include{VPN}
+
+ - variable: addons
+ group: "Addons"
+ label: ""
+ schema:
+ type: dict
+ attrs:
+ - variable: vpn
+ label: "VPN"
+ schema:
+ type: dict
+ attrs:
+ - variable: type
+ label: "Type"
+ schema:
+ type: string
+ default: "disabled"
+ enum:
+ - value: "disabled"
+ description: "disabled"
+ - value: "openvpn"
+ description: "OpenVPN"
+ - value: "wireguard"
+ description: "Wireguard"
+ - variable: openvpn
+ label: "OpenVPN Settings"
+ schema:
+ type: dict
+ show_if: [["type", "=", "openvpn"]]
+ attrs:
+ - variable: auth
+ label: "auth"
+ schema:
+ type: string
+ default: ""
+ - variable: authSecret
+ label: "authSecret"
+ schema:
+ type: string
+ default: ""
+ - variable: wireguard
+ label: "Wireguard Settings"
+ schema:
+ type: dict
+ show_if: [["type", "=", "wireguard"]]
+ attrs:
+ - variable: KILLSWITCH
+ label: "Enable killswitch"
+ schema:
+ type: boolean
+ default: false
+ - variable: KILLSWITCH_EXCLUDEDNETWORKS_IPV4
+ label: "Killswitch Excluded IPv4 networks"
+ description: "list of killswitch excluded ipv4 addresses seperated by ;"
+ schema:
+ type: string
+ default: "172.16.0.0/12"
+ - variable: KILLSWITCH_EXCLUDEDNETWORKS_IPV6
+ label: "Killswitch Excluded IPv6 networks"
+ description: "list of killswitch excluded ipv4 addresses seperated by ;"
+ schema:
+ type: string
+ default: ""
+ - variable: configFile
+ label: "VPN Config File Location"
+ schema:
+ type: dict
+ show_if: [["type", "!=", "disabled"]]
+ attrs:
+ - variable: enabled
+ label: "enabled"
+ schema:
+ type: boolean
+ default: true
+ hidden: true
+ - variable: type
+ label: "type"
+ schema:
+ type: string
+ default: "hostPath"
+ hidden: true
+ - variable: hostPathType
+ label: "hostPathType"
+ schema:
+ type: string
+ default: "File"
+ hidden: true
+ - variable: noMount
+ label: "noMount"
+ schema:
+ type: boolean
+ default: true
+ hidden: true
+ - variable: hostPath
+ label: "Full path to file"
+ schema:
+ type: string
+ default: "/mnt/tank/config/YourVPN-Config.conf"
+ required: true
+ - variable: envList
+ label: "VPN environment Variables"
+ schema:
+ type: list
+ show_if: [["type", "!=", "disabled"]]
+ default: []
+ items:
+ - variable: envItem
+ label: "Environment Variable"
+ schema:
+ type: dict
+ attrs:
+ - variable: name
+ label: "Name"
+ schema:
+ type: string
+ required: true
+ - variable: value
+ label: "Value"
+ schema:
+ type: string
+ required: true
diff --git a/incubator/testbed/7.0.13/templates/common.yaml b/incubator/testbed/7.0.14/templates/common.yaml
similarity index 100%
rename from incubator/testbed/7.0.13/templates/common.yaml
rename to incubator/testbed/7.0.14/templates/common.yaml
diff --git a/incubator/testbed/7.0.13/test_values.yaml b/incubator/testbed/7.0.14/test_values.yaml
similarity index 100%
rename from incubator/testbed/7.0.13/test_values.yaml
rename to incubator/testbed/7.0.14/test_values.yaml
diff --git a/incubator/testbed/7.0.13/values.yaml b/incubator/testbed/7.0.14/values.yaml
similarity index 100%
rename from incubator/testbed/7.0.13/values.yaml
rename to incubator/testbed/7.0.14/values.yaml