Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ metadata:
{{- end }}
spec:
bucket: {{ .Values.nats.kv_bucket_project_base.name }}
replicas: {{ .Values.nats.kv_bucket_project_base.replicas }}
history: {{ .Values.nats.kv_bucket_project_base.history }}
storage: {{ .Values.nats.kv_bucket_project_base.storage }}
maxValueSize: {{ .Values.nats.kv_bucket_project_base.maxValueSize }}
Expand All @@ -32,6 +33,7 @@ metadata:
{{- end }}
spec:
bucket: {{ .Values.nats.kv_bucket_project_settings.name }}
replicas: {{ .Values.nats.kv_bucket_project_settings.replicas }}
history: {{ .Values.nats.kv_bucket_project_settings.history }}
storage: {{ .Values.nats.kv_bucket_project_settings.storage }}
maxValueSize: {{ .Values.nats.kv_bucket_project_settings.maxValueSize }}
Expand Down
4 changes: 4 additions & 0 deletions charts/lfx-v2-project-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ nats:
keep: true
# name is the name of the KV bucket for storing project base information
name: projects
# replicas is the number of replicas for the KV bucket
replicas: 1
# history is the number of history entries to keep for the KV bucket
history: 20
# storage is the storage type for the KV bucket
Expand All @@ -169,6 +171,8 @@ nats:
keep: true
# name is the name of the KV bucket for storing project settings
name: project-settings
# replicas is the number of replicas for the KV bucket
replicas: 1
# history is the number of history entries to keep for the KV bucket
history: 20
# storage is the storage type for the KV bucket
Expand Down
Loading