Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions charts/lfx-v1-sync-helper/templates/nats-resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ spec:
storage: {{ .Values.natsResources.kv_bucket_v1_objects.storage }}
maxValueSize: {{ .Values.natsResources.kv_bucket_v1_objects.maxValueSize }}
maxBytes: {{ .Values.natsResources.kv_bucket_v1_objects.maxBytes }}
replicas: {{ .Values.natsResources.kv_bucket_v1_objects.replicas }}
compression: {{ .Values.natsResources.kv_bucket_v1_objects.compression }}
{{- end }}
---
Expand All @@ -36,6 +37,7 @@ spec:
storage: {{ .Values.natsResources.kv_bucket_v1_mappings.storage }}
maxValueSize: {{ .Values.natsResources.kv_bucket_v1_mappings.maxValueSize }}
maxBytes: {{ .Values.natsResources.kv_bucket_v1_mappings.maxBytes }}
replicas: {{ .Values.natsResources.kv_bucket_v1_mappings.replicas }}
compression: {{ .Values.natsResources.kv_bucket_v1_mappings.compression }}
{{- end }}
---
Expand All @@ -55,6 +57,7 @@ spec:
storage: {{ .Values.natsResources.kv_bucket_dynamodb_checkpoints.storage }}
maxValueSize: {{ .Values.natsResources.kv_bucket_dynamodb_checkpoints.maxValueSize }}
maxBytes: {{ .Values.natsResources.kv_bucket_dynamodb_checkpoints.maxBytes }}
replicas: {{ .Values.natsResources.kv_bucket_dynamodb_checkpoints.replicas }}
compression: {{ .Values.natsResources.kv_bucket_dynamodb_checkpoints.compression }}
{{- end }}
---
Expand Down
6 changes: 6 additions & 0 deletions charts/lfx-v1-sync-helper/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ natsResources:
maxValueSize: 10485760 # 10MB
# maxBytes is the maximum number of bytes in the KV bucket
maxBytes: 10737418240 # 10GB
# replicas is the number of replicas for the KV bucket (1 for single instance)
replicas: 1
# compression is a boolean to determine if the KV bucket should be compressed
compression: true

Expand All @@ -54,6 +56,8 @@ natsResources:
maxValueSize: 10485760 # 10MB
# maxBytes is the maximum number of bytes in the KV bucket
maxBytes: 2147483648 # 2GB
# replicas is the number of replicas for the KV bucket (1 for single instance)
replicas: 1
# compression is a boolean to determine if the KV bucket should be compressed
compression: true

Expand All @@ -74,6 +78,8 @@ natsResources:
maxValueSize: 1024
# maxBytes is the maximum number of bytes in the KV bucket (-1 for unlimited)
maxBytes: -1
# replicas is the number of replicas for the KV bucket (1 for single instance)
replicas: 1
# compression is a boolean to determine if the KV bucket should be compressed
compression: false

Expand Down
Loading