You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
912 B
45 lines
912 B
pkgs: { |
|
|
|
deploymentName = "mainnet"; |
|
|
|
dnsZone = "${pkgs.globals.domain}"; |
|
|
|
domain = "cardano-mainnet.iohk.io"; |
|
|
|
explorerHostName = "explorer.cardano.org"; |
|
explorerForceSSL = true; |
|
explorerAliases = [ "explorer.mainnet.cardano.org" "explorer.${pkgs.globals.domain}" ]; |
|
|
|
withCardanoDBExtended = true; |
|
withHighCapacityMonitoring = true; |
|
withHighCapacityExplorer = true; |
|
withHighLoadRelays = true; |
|
withSmash = true; |
|
|
|
initialPythonExplorerDBSyncDone = true; |
|
|
|
environmentName = "mainnet"; |
|
|
|
topology = import ./topologies/mainnet.nix pkgs; |
|
|
|
maxRulesPerSg = { |
|
IOHK = 61; |
|
Emurgo = 36; |
|
CF = 36; |
|
}; |
|
|
|
ec2 = { |
|
credentials = { |
|
accessKeyIds = { |
|
IOHK = "mainnet-iohk"; |
|
Emurgo = "mainnet-emurgo"; |
|
CF = "mainnet-cf"; |
|
dns = "mainnet-iohk"; |
|
}; |
|
}; |
|
}; |
|
|
|
alertChainDensityLow = "92"; |
|
alertTcpHigh = "250"; |
|
alertTcpCrit = "300"; |
|
}
|
|
|