deploy-node-network-inputs.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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"
  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 (ami-095792100b6e43a67)",
  32. "value": "ami-095792100b6e43a67"
  33. },
  34. "networkSuffix": {
  35. "description": "Network suffix that will be added to the network name",
  36. "value": "8129"
  37. },
  38. "initialBalancesFile": {
  39. "description": "HTTP Link to the Initial Balances file",
  40. "value": ""
  41. },
  42. "initialMembersFile": {
  43. "description": "HTTP Link to the Initial Members file",
  44. "value": ""
  45. },
  46. "deploymentType": {
  47. "description": "Chain deployment type (live, dev etc.)",
  48. "value": "live"
  49. },
  50. "encryptionKey": {
  51. "description": "Password to encrypt the artifacts",
  52. "value": "password"
  53. }
  54. }