config.template.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. Copyright (C) 2018 Cloudbase Solutions SRL
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as
  5. published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. // @flow
  15. export default {
  16. nodeServer: 'http://localhost:3000/',
  17. coriolisUrl: '',
  18. username: 'cypress',
  19. password: 'cypress',
  20. endpoints: {
  21. azure: {
  22. username: '',
  23. password: '',
  24. subscriptionId: '',
  25. },
  26. vmware: {
  27. username: '',
  28. password: '',
  29. host: '',
  30. },
  31. openstack: {
  32. userDomainName: '',
  33. authUrl: '',
  34. projectName: '',
  35. projectDomainName: '',
  36. password: '',
  37. username: '',
  38. glanceApiVersion: 2,
  39. identityVersion: 3,
  40. allowUntrusted: true,
  41. allowUntrustedSwift: true,
  42. },
  43. oci: {
  44. privateKeyData: '',
  45. region: '',
  46. tenancy: '',
  47. user: '',
  48. privateKeyPassphrase: '',
  49. },
  50. },
  51. wizard: {
  52. azure: {
  53. resourceGroup: { label: 'Coriolis', value: 'coriolis' },
  54. },
  55. oci: {
  56. compartment: '',
  57. migrSubnetId: '',
  58. availabilityDomain: '',
  59. },
  60. instancesSearch: {
  61. vmwareSearchText: '',
  62. vmwareItemIndex: 0,
  63. openstackSearchText: '',
  64. openstackItemIndex: 0,
  65. },
  66. },
  67. }