From 375211f1847b89b9889c54dfda9b725140c60cd5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marc=20Sch=C3=A4fer?=
Date: Sat, 28 Feb 2026 23:56:28 +0100
Subject: [PATCH] feat(kubernetes): enable newtInstances by default and update
installation instructions
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Marc Schäfer
---
src/components/newt-install-commands.tsx | 110 ++++++++++++-----------
1 file changed, 60 insertions(+), 50 deletions(-)
diff --git a/src/components/newt-install-commands.tsx b/src/components/newt-install-commands.tsx
index 5a252f0d5..86acc492f 100644
--- a/src/components/newt-install-commands.tsx
+++ b/src/components/newt-install-commands.tsx
@@ -101,6 +101,7 @@ export function NewtSiteInstallCommands({
`helm install newt fossorial/newt \\
--create-namespace \\
--set newtInstances[0].name="main-tunnel" \\
+ --set newtInstances[0].enabled=true \\
--set-string newtInstances[0].auth.keys.endpointKey="${endpoint}" \\
--set-string newtInstances[0].auth.keys.idKey="${id}" \\
--set-string newtInstances[0].auth.keys.secretKey="${secret}"`
@@ -185,59 +186,68 @@ WantedBy=default.target`
className="mt-4"
/>
-
-
- {t("siteConfiguration")}
-
-
- {
- const value = checked as boolean;
- setAcceptClients(value);
- }}
- label={t("siteAcceptClientConnections")}
- />
-
-
+
{t("siteConfiguration")}
+
+ {
+ const value = checked as boolean;
+ setAcceptClients(value);
+ }}
+ label={t("siteAcceptClientConnections")}
+ />
+
+
+ {t("siteAcceptClientConnectionsDescription")}
+
+
+
+
+ docs.pangolin.net/manage/sites/install-kubernetes
+
+ .
+
+
+ {commands.map((item, index) => {
+ const commandText =
+ typeof item === "string" ? item : item.command;
+ const title =
+ typeof item === "string"
+ ? undefined
+ : item.title;
-
-
{t("commands")}
-
- {commands.map((item, index) => {
- const commandText =
- typeof item === "string"
- ? item
- : item.command;
- const title =
- typeof item === "string"
- ? undefined
- : item.title;
-
- return (
-
- {title && (
-
- {title}
-
- )}
-
-
- );
- })}
-
+ return (
+
+ {title && (
+
+ {title}
+
+ )}
+
+
+ );
+ })}
+
);