File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 168
168
"pin_tracker" : {
169
169
"stateless" : {
170
170
"max_pin_queue_size" : {{ ipfs_cluster_stateless_max_pin_queue_size | default(1000000) }},
171
- "concurrent_pins" : {{ ipfs_cluster_stateless_concurrent_pins | default(10) }}
171
+ "concurrent_pins" : {{ ipfs_cluster_stateless_concurrent_pins | default(10) }},
172
+ "priority_pin_max_age" : " {{ ipfs_cluster_stateless_priority_pin_max_age | default('24h') }}" ,
173
+ "priority_pin_max_retries" : {{ ipfs_cluster_stateless_priority_pin_max_retries | default(5) }}
172
174
}
173
175
},
174
176
"monitor" : {
181
183
"disk" : {
182
184
"metric_ttl" : " {{ ipfs_cluster_informer_disk_metric_ttl | default('5m') }}" ,
183
185
"metric_type" : " {{ ipfs_cluster_informer_disk_metric_type | default('freespace') }}"
186
+ },
187
+ "tags" : {
188
+ "metric_ttl" : " 30s" ,
189
+ "tags" : {{ ipfs_cluster_informer_tags_tags | default({ }) | to_json }}
190
+ }
191
+ },
192
+ "allocator" : {
193
+ "balanced" : {
194
+ "allocate_by" : {{ ipfs_cluster_allocator_balanced_allocate_by | default(["freespace"]) | to_json }}
184
195
}
185
196
},
186
197
"observations" : {
Original file line number Diff line number Diff line change 5
5
},
6
6
"Datastore": {
7
7
"StorageMax": "{{ ipfs_storage_max }}",
8
- "StorageGCWatermark": 90 ,
8
+ "StorageGCWatermark": {{ ipfs_gc_watermwark | default(90) }} ,
9
9
"BloomFilterSize": {{ ipfs_bloom_filter_size }},
10
- "GCPeriod": "1h ",
10
+ "GCPeriod": "{{ ipfs_gc_period | default('1h') }} ",
11
11
"HashOnRead": false,
12
12
{% if ipfs_use_badger | default(False) %}
13
13
"Spec": {
144
144
"Swarm": {
145
145
"DisableBandwidthMetrics": {{ ipfs_disable_bandwidth_metrics | default(False) | lower }},
146
146
"DisableNatPortMap": true,
147
- "DisableRelay": false ,
147
+ "DisableRelay": {{ ipfs_disable_relay | default(False) | lower }} ,
148
148
"EnableAutoNATService": false,
149
149
"EnableAutoRelay": false,
150
150
"EnableRelayHop": false,
You can’t perform that action at this time.
0 commit comments