Skip to content

Commit

Permalink
more proxy docs (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarmatei authored Nov 21, 2024
1 parent 3eb6651 commit fa3456e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions PROXY-GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ from the NxAPI to your S3 bucket. The same issue will happen with connection to
For that, you can try forcing the connection to bypass the proxy by setting the [`NO_PROXY=amazonaws.com,your-github-instance.com`](https://about.gitlab.com/blog/2021/01/27/we-need-to-talk-no-proxy/) env var on your
NxAPI pods.

If you need the calls to go through a proxy, you can define this at the root of your `helm-values.yaml`:

```yaml
vcsHttpsProxy: 'http://your-proxy.com:80'
```

## Self-Signed SSL Certificates

Expand Down
11 changes: 11 additions & 0 deletions examples/mongodb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ kind: MongoDBCommunity
metadata:
name: cloud-mongodb
spec:
statefulSet:
spec:
template:
spec:
containers:
- name: mongod
resources:
limits:
memory: "4Gi"
requests:
memory: "2Gi"
members: 3
type: ReplicaSet
version: '6.0.1'
Expand Down

0 comments on commit fa3456e

Please sign in to comment.