From 818328c9d4ddbb88fa4948006458c9c6c9bd91f7 Mon Sep 17 00:00:00 2001 From: jpgouin Date: Fri, 20 Jun 2025 12:32:43 +0200 Subject: [PATCH] fix-howto usage of serverEnvs and agentEnvs (#385) --- docs/howtos/create-virtual-clusters.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/howtos/create-virtual-clusters.md b/docs/howtos/create-virtual-clusters.md index 03ca668d..45ede6fa 100644 --- a/docs/howtos/create-virtual-clusters.md +++ b/docs/howtos/create-virtual-clusters.md @@ -265,9 +265,11 @@ metadata: name: k3kcluster-http-proxy spec: serverEnvs: - HTTP_PROXY: http://abc.xyz + - name: HTTP_PROXY + value: "http://abc.xyz" agentEnvs: - HTTP_PROXY: http://abc.xyz + - name: HTTP_PROXY + value: "http://abc.xyz" ``` This configures an HTTP proxy for both servers and agents in the virtual cluster.