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.

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