config.template.js 803 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // @flow
  2. export default {
  3. nodeServer: 'http://localhost:3000/',
  4. coriolisUrl: '',
  5. username: 'admin',
  6. password: '',
  7. endpoints: {
  8. azure: {
  9. username: '',
  10. password: '',
  11. subscriptionId: '',
  12. },
  13. vmware: {
  14. username: '',
  15. password: '',
  16. host: '',
  17. },
  18. openstack: {
  19. userDomainName: 'Default',
  20. authUrl: '',
  21. projectName: 'admin',
  22. projectDomainName: '',
  23. password: '',
  24. username: 'admin',
  25. glanceApiVersion: 2,
  26. identityVersion: 3,
  27. },
  28. },
  29. wizard: {
  30. azure: {
  31. location: { label: 'West US', value: 'westus' },
  32. resourceGroup: { label: 'Coriolis', value: 'coriolis' },
  33. },
  34. openstack: {
  35. network: 'private',
  36. },
  37. instancesSearch: 'ubuntu',
  38. instancesSelectItem: 2,
  39. },
  40. }