deploy-node-network-inputs.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "gitRepo": {
  3. "description": "Code repository",
  4. "value": "https://github.com/Joystream/joystream.git"
  5. },
  6. "branchName": {
  7. "description": "Branch to deploy",
  8. "value": "master"
  9. },
  10. "keyName": {
  11. "description": "SSH key pair on AWS",
  12. "value": "joystream-github-action-key-new"
  13. },
  14. "numberOfValidators": {
  15. "description": "Number of validators to deploy",
  16. "value": "2"
  17. },
  18. "validatorInstanceType": {
  19. "description": "AWS EC2 instance type for Validators (t2.micro, t2.large)",
  20. "value": "t2.micro"
  21. },
  22. "buildInstanceType": {
  23. "description": "AWS EC2 instance type for Build Instance (t2.micro, t2.large)",
  24. "value": "t2.large"
  25. },
  26. "rpcInstanceType": {
  27. "description": "AWS EC2 instance type for RPC (t2.micro, t2.large)",
  28. "value": "t2.micro"
  29. },
  30. "ec2AMI": {
  31. "description": "Pre-built AMI ID",
  32. "value": "ami-0ce5f13e91397239a"
  33. },
  34. "volumeSize": {
  35. "description": "Validator and Build instance volume size in GB",
  36. "value": "120"
  37. },
  38. "rpcVolumeSize": {
  39. "description": "RPC Instance volume size in GB",
  40. "value": "120"
  41. },
  42. "networkSuffix": {
  43. "description": "Network suffix that will be added to the network name",
  44. "value": "8129"
  45. },
  46. "initialBalancesFile": {
  47. "description": "HTTP Link to the Initial Balances file",
  48. "value": ""
  49. },
  50. "initialMembersFile": {
  51. "description": "HTTP Link to the Initial Members file",
  52. "value": ""
  53. },
  54. "deploymentType": {
  55. "description": "Chain deployment type (live, dev etc.)",
  56. "value": "live"
  57. },
  58. "encryptionKey": {
  59. "description": "Password to encrypt the artifacts",
  60. "value": "password"
  61. },
  62. "runtimeProfile": {
  63. "description": "STAGING | PLAYGROUND| TESTING - leave empty for production",
  64. "value": ""
  65. },
  66. "skipChainSetup": {
  67. "description": "Set to true to skip running setup new chain scenario",
  68. "value": true
  69. }
  70. }