Add the Ansible README and expand prod bootstrap coverage for StorageBox keys, DB labels, DB stack configuration, and act runner setup. Update MongoDB configuration for replica set support and refresh prod roadmap/setup documentation for Swarm labels, StorageBox-backed cert paths, and recovery guidance.
22 lines
443 B
Django/Jinja
22 lines
443 B
Django/Jinja
systemLog:
|
|
verbosity: 0
|
|
timeStampFormat: "iso8601-local"
|
|
destination: file
|
|
path: "/data/log/mongo.log"
|
|
logAppend: true
|
|
logRotate: rename
|
|
storage:
|
|
dbPath: /data/db
|
|
engine: "wiredTiger"
|
|
directoryPerDB: true
|
|
net:
|
|
port: 27017
|
|
bindIp: 0.0.0.0
|
|
security:
|
|
authorization: enabled
|
|
{% if mongodb_replset_name is defined %}
|
|
keyFile: /data/configdb/rs-auth.key
|
|
replication:
|
|
replSetName: "{{ mongodb_replset_name }}"
|
|
{% endif %}
|