Skip to content

Commit

Permalink
Merge pull request #546 from filecoin-project/feat/splitstore-markset…
Browse files Browse the repository at this point in the history
…-test

Setup testing for vyzo
  • Loading branch information
travisperson authored Feb 7, 2022
2 parents 31a256c + 996b999 commit 77a4613
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 11 deletions.
53 changes: 44 additions & 9 deletions kubernetes/mainnet-us-east-2-dev-eks/helm/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,47 +114,82 @@ deployments:
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: standard-16g
name: markset-badger-16g
values:
- base
- markset-badger
- limits-16G
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: standard-32g
name: markset-badger-24g
values:
- base
- markset-badger
- limits-24G
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: markset-badger-32g
values:
- base
- markset-badger
- limits-32G
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: standard-48g
name: markset-badger-40g
values:
- base
- markset-badger
- limits-40G
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: markset-badger-48g
values:
- base
- markset-badger
- limits-48G
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: splitstore-16g
name: markset-map-16g
values:
- base
- coldstore-discard
- markset-map
- limits-16G
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: splitstore-32g
name: markset-map-24g
values:
- base
- coldstore-discard
- markset-map
- limits-24G
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: markset-map-32g
values:
- base
- markset-map
- limits-32G
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: splitstore-48g
name: markset-map-40g
values:
- base
- markset-map
- limits-40G
- chart: filecoin/lotus-fullnode
version: 0.3.3
namespace: ntwk-mainnet-splitstore-test
name: markset-map-48g
values:
- base
- coldstore-discard
- markset-map
- limits-48G
- chart: filecoin/lotus-bundle
version: 0.0.11
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
image:
tag: mainnet-0dfafb284
tag: mainnet-049b48928

prometheusOperatorServiceMonitor: true

persistence:
datastore:
enabled: true
storageClassName: "ebs-csi"
size: "3000Gi"
size: "1000Gi"

importSnapshot:
enabled: true
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
resources:
requests:
memory: 24Gi
cpu: 8
limits:
memory: 24Gi
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
resources:
requests:
memory: 40Gi
cpu: 8
limits:
memory: 40Gi
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
daemonConfig: |
[API]
ListenAddress = "/ip4/0.0.0.0/tcp/1234/http"
[Libp2p]
ListenAddresses = ["/ip4/0.0.0.0/tcp/1347"]
[Chainstore]
EnableSplitstore = true
[Chainstore.Splitstore]
ColdStoreType = "discard"
MarkSetType = "badger"
HotStoreFullGCFrequency = 6
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
daemonConfig: |
[API]
ListenAddress = "/ip4/0.0.0.0/tcp/1234/http"
[Libp2p]
ListenAddresses = ["/ip4/0.0.0.0/tcp/1347"]
[Chainstore]
EnableSplitstore = true
[Chainstore.Splitstore]
ColdStoreType = "discard"
MarkSetType = "map"
HotStoreFullGCFrequency = 6

0 comments on commit 77a4613

Please sign in to comment.