18 lines
307 B
YAML
18 lines
307 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: nats-config
|
|
namespace: nats
|
|
labels:
|
|
app: nats
|
|
component: config
|
|
annotations:
|
|
description: "NATS JetStream configuration"
|
|
data:
|
|
nats.conf: |
|
|
jetstream {
|
|
store_dir: /data
|
|
max_mem_store: 128MB
|
|
max_file_store: 1GB
|
|
}
|