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.

46 lines
2.4 KiB

  1. # This heml 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. mongo:
  17. # host: my-nosql-data # Uncomment to use specify custom mongo host. By default nosql-data is used
  18. locations:
  19. database: LocationsDb
  20. marketing:
  21. database: MarketingDb
  22. redis: # inf.redis defines the redis' connection strings
  23. basket:
  24. svc: basket-data # Name of k8s svc for basket redis
  25. constr: basket-data # Connection string to Redis used by Basket API
  26. keystore:
  27. svc: keystore-data # Name of k8s svc for keystore-data redis
  28. constr: keystore-data # Connection string to Redis used as a Keystore (by Identity API)
  29. eventbus:
  30. svc: rabbitmq # Name of k8s svc for rabbitmq
  31. constr: rabbitmq # Event bus connection string
  32. useAzure: false # true if use Azure Service Bus. False if RabbitMQ
  33. appinsights:
  34. key: "" # App insights to use
  35. k8s: # inf.k8s defines Kubernetes cluster global config
  36. dns: "" # k8s external DNS. This value or ip value MUST BE PROVIDED
  37. misc: # inf.misc contains miscellaneous configuration related to infrastructure
  38. useLoadTest: false # If running under loading test or not
  39. useAzureStorage: false # If catalog api uses azure storage or not
  40. # registry: # Uncomment "registry" to specify registry secret
  41. # secretName: # secretName is the name of the secret inside k8s
  42. # server: # Registry login server
  43. # login: # User login
  44. # pwd: # User pwd