You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/cli_and_http_proxy.md
+13-9Lines changed: 13 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,23 +70,27 @@ All subsequent CLI commands will now route through the proxy automatically.
70
70
71
71
## Scope of `--http-proxy`
72
72
73
-
The `--http-proxy` flag only applies to traffic between the CLI and the Kosli API. Commands that integrate with third-party services (GitHub, GitLab, Jira, SonarCloud/SonarQube, Azure, AWS) use separate HTTP clients that are **not** affected by this flag. To proxy that traffic, set the standard `HTTPS_PROXY` environment variable separately.
73
+
The `--http-proxy` flag only applies to traffic between the CLI and the Kosli API. Commands that integrate with third-party services (GitHub, GitLab, Jira, SonarCloud/SonarQube, Azure, AWS) use separate HTTP clients that are **not** affected by this flag. To proxy that traffic, set the standard `HTTPS_PROXY`/ `HTTP_PROXY` / `NO_PROXY`environment variables separately.
74
74
75
75
The table below shows every external endpoint the CLI may contact and how to proxy each one:
| Kubernetes API server | In-cluster or via kubeconfig |`snapshot k8s`| kubeconfig `proxy-url` or `HTTPS_PROXY`|
89
89
90
+
### Corporate proxies requiring Kerberos or NTLM
91
+
92
+
Go's HTTP client only supports Basic authentication for proxies. If your corporate proxy requires Kerberos or NTLM (common in large enterprises), run a local auth-handling proxy such as [cntlm](https://cntlm.sourceforge.net/) or [px](https://github.com/genotrance/px), then point `HTTPS_PROXY` at `http://127.0.0.1:<local-port>`.
93
+
90
94
## Kubernetes reporter
91
95
92
96
The `snapshot k8s` command makes two independent outbound connections:
0 commit comments