Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setup testing for vyzo #546

Merged
merged 1 commit into from
Feb 7, 2022
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
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