- Add Cloud for Sovereignty landing zone architecture and deployment - Implement complete legal document management system - Reorganize documentation with improved navigation - Add infrastructure improvements (Dockerfiles, K8s, monitoring) - Add operational improvements (graceful shutdown, rate limiting, caching) - Create comprehensive project structure documentation - Add Azure deployment automation scripts - Improve repository navigation and organization
16 lines
356 B
YAML
16 lines
356 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: opensearch-config
|
|
namespace: the-order
|
|
data:
|
|
opensearch.yml: |
|
|
cluster.name: the-order-logs
|
|
node.name: opensearch-0
|
|
network.host: 0.0.0.0
|
|
discovery.type: single-node
|
|
path.data: /usr/share/opensearch/data
|
|
path.logs: /usr/share/opensearch/logs
|
|
plugins.security.disabled: true
|
|
|