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.

56 lines
2.9 KiB

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