Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion packages/local/src/tunnel/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const TUNNEL_CHART_PATH = "agent-ix/helm-charts/cloudflared";
// Tracks the helm-charts monorepo version (the tag drives every chart's
// published version regardless of Chart.yaml; bump this whenever the
// helm-charts repo cuts a new tag).
export const TUNNEL_CHART_VERSION = "0.10.2";
export const TUNNEL_CHART_VERSION = "0.10.3";

export interface TunnelInstallOptions {
/** Override resolved chart version (testing / pinning). */
Expand Down Expand Up @@ -107,6 +107,12 @@ export async function runTunnelUp(
"--set-string",
`tunnelToken=${token}`,
"--wait",
// Helm's 5min default isn't enough on slow image pulls or when QUIC
// handshake to the Cloudflare edge takes a beat. Without this the
// command exits "context deadline exceeded" while the pod is still
// converging.
"--timeout",
"10m",
],
{ all: true },
);
Expand Down