Skip to content

Commit 3d637b3

Browse files
authored
Add callout for instances where NO_PROXY requires an asterisk
This change adds a nuanced item where some customers may need to add an asterisk when using proxies in their override file.
1 parent fb691b0 commit 3d637b3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

docs/admin/config/private-network.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ executor|frontend|gitserver|migrator|repo-updater|worker:
4444
value: "blobstore,codeinsights-db,codeintel-db,sourcegraph-frontend-internal,sourcegraph-frontend,github-proxy,gitserver,grafana,indexed-search-indexer,indexed-search,jaeger-query,pgsql,precise-code-intel-worker,prometheus,redis-cache,redis-store,repo-updater,searcher,symbols,syntect-server,worker-executors,worker,cloud-sql-proxy,localhost,127.0.0.1,.svc,.svc.cluster.local,kubernetes.default.svc"
4545
```
4646
47+
<Callout type="info">
48+
After setting up your proxy in the override file, you may notice some pods like the frontend, gitserver and repo-updater failing health checks. In such a case, you'll need to add an '*' to the NO_PROXY environment variable. This should look like:
49+
</Callout>
50+
51+
```
52+
- name: NO_PROXY
53+
value: "blobstore,codeinsights-db,codeintel-db,sourcegraph-frontend-internal,sourcegraph-frontend,github-proxy,gitserver,grafana,indexed-search-indexer,indexed-search,jaeger-query,pgsql,precise-code-intel-worker,prometheus,redis-cache,redis-store,repo-updater,searcher,symbols,syntect-server,worker-executors,worker,cloud-sql-proxy,localhost,127.0.0.1,.svc,.svc.cluster.local,kubernetes.default.svc, *"
54+
```
55+
4756
### Docker Compose
4857
4958
Add the proxy environment variables your docker compose override file.

0 commit comments

Comments
 (0)