-
Notifications
You must be signed in to change notification settings - Fork 161
/
globals-testnet.nix
46 lines (34 loc) · 977 Bytes
/
globals-testnet.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
pkgs: {
deploymentName = "testnet";
dnsZone = "${pkgs.globals.domain}";
domain = "cardano-testnet.iohkdev.io";
withSubmitApi = true;
withFaucet = true;
withSmash = true;
withMetadata = true;
withHighLoadRelays = true;
withSnapshots = true;
faucetHostname = "faucet";
initialPythonExplorerDBSyncDone = true;
environmentName = "testnet";
topology = import ./topologies/testnet.nix pkgs;
ec2 = {
credentials = {
accessKeyIds = {
IOHK = "default";
dns = "default";
};
};
instances = with pkgs.iohk-ops-lib.physical.aws; {
metadata = t3a-xlarge;
core-node = r5-large;
};
};
relayUpdateArgs = "-m 50 -s -e [email protected]";
# Trigger relay topology refresh 12 hours before next epoch
relayUpdateHoursBeforeNextEpoch = 12;
snapshotStatesArgs = "-e [email protected]";
snapshotStatesS3Bucket = "updates-cardano-testnet";
alertChainDensityLow = "50";
metadataVarnishTtl = 15;
}