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.

50 lines
2.5 KiB

  1. # This helm values file defines all infrastructure used by eShopOnContainers.
  2. # It is used on all charts, so ** MUST BE INCLUDED ** on every deployment
  3. inf:
  4. sql: # inf.sql defines the sql server databases & logins
  5. # host: my-sql-server # Uncomment to specify a custom sql-server to be used. By default "sql-data-<appname>" will be used
  6. common:
  7. user: sa # SQL user
  8. pwd: Pass@word # SQL pwd
  9. pid: Developer
  10. catalog: # inf.sql.catalog: settings for the catalog-api sql (user, pwd, db)
  11. db: CatalogDb # Catalog API SQL db name
  12. ordering: # inf.sql.ordering: settings for the ordering-api sql (user, pwd, db)
  13. db: OrderingDb # Ordering API SQL db name
  14. identity:
  15. db: IdentityDb # Ordering API SQL db name
  16. marketing:
  17. db: MarketingDb # Marketing API SQL db name
  18. webhooks:
  19. db: WebhooksDb # Webhooks DB
  20. mongo:
  21. # host: my-nosql-data # Uncomment to use specify custom mongo host. By default nosql-data is used
  22. locations:
  23. database: LocationsDb
  24. marketing:
  25. database: MarketingDb
  26. redis: # inf.redis defines the redis' connection strings
  27. basket:
  28. svc: basket-data # Name of k8s svc for basket redis
  29. constr: basket-data # Connection string to Redis used by Basket API
  30. keystore:
  31. svc: keystore-data # Name of k8s svc for keystore-data redis
  32. constr: keystore-data # Connection string to Redis used as a Keystore (by Identity API)
  33. eventbus:
  34. svc: rabbitmq # Name of k8s svc for rabbitmq
  35. constr: rabbitmq # Event bus connection string
  36. useAzure: false # true if use Azure Service Bus. False if RabbitMQ
  37. appinsights:
  38. key: "" # App insights to use
  39. k8s: # inf.k8s defines Kubernetes cluster global config
  40. dns: "" # k8s external DNS. This value or ip value MUST BE PROVIDED
  41. misc: # inf.misc contains miscellaneous configuration related to infrastructure
  42. useLoadTest: false # If running under loading test or not
  43. useAzureStorage: false # If catalog api uses azure storage or not
  44. # registry: # Uncomment "registry" to specify registry secret
  45. # secretName: # secretName is the name of the secret inside k8s
  46. # server: # Registry login server
  47. # login: # User login
  48. # pwd: # User pwd