mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

- Documentation support to add a new BDB node to an existing replica set, using x.509 certificates and SSL/TSL connections, across geographically dispersed clusters. - Fix some documentation issues and add more references i.e. specifically about signing of MongoDB member certificates. - Minor fixes for nginx-https-dep.yaml(invalid configMap var) - Reconfigure nginx keep_alive between MongoDB front and backend ports. - Editor removed whitespaces
13 lines
343 B
YAML
13 lines
343 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
# Name of mongodb instance you are trying to connect to
|
|
# e.g. mdb-instance-0
|
|
name: "<remote-mongodb-host>"
|
|
namespace: default
|
|
spec:
|
|
ports:
|
|
- port: "<mongodb-backend-port from ConfigMap>"
|
|
type: ExternalName
|
|
# FQDN of remote cluster/NGINX instance
|
|
externalName: "<dns-name-remote-nginx>" |