diff --git a/PROXY-GUIDE.md b/PROXY-GUIDE.md index bf22e78..73c2b7b 100644 --- a/PROXY-GUIDE.md +++ b/PROXY-GUIDE.md @@ -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 diff --git a/examples/mongodb.yml b/examples/mongodb.yml index f3def6a..8ffd266 100644 --- a/examples/mongodb.yml +++ b/examples/mongodb.yml @@ -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'