Skip to content

Commit ae9ab40

Browse files
authored
[registry-facade] Remove support for proxy settings (#19396)
1 parent 5c715df commit ae9ab40

File tree

1 file changed

+0
-20
lines changed
  • install/installer/pkg/components/registry-facade

1 file changed

+0
-20
lines changed

install/installer/pkg/components/registry-facade/daemonset.go

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -127,26 +127,6 @@ func daemonset(ctx *common.RenderContext) ([]runtime.Object, error) {
127127
}
128128
}
129129

130-
if ucfg.WebApp != nil {
131-
proxyConfig := ucfg.WebApp.ProxySettings
132-
if proxyConfig != nil {
133-
envvars = append(envvars, []corev1.EnvVar{
134-
{
135-
Name: "HTTP_PROXY",
136-
Value: proxyConfig.HttpProxy,
137-
},
138-
{
139-
Name: "HTTPS_PROXY",
140-
Value: proxyConfig.HttpsProxy,
141-
},
142-
{
143-
Name: "NO_PROXY",
144-
Value: proxyConfig.NoProxy,
145-
},
146-
}...)
147-
}
148-
}
149-
150130
return nil
151131
})
152132
if err != nil {

0 commit comments

Comments
 (0)