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.

47 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. 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. webhooks:
  22. db: WebhooksDb # Webhooks DB
  23. redis: # inf.redis defines the redis' connection strings
  24. basket:
  25. svc: basket-data # Name of k8s svc for basket redis
  26. constr: basket-data # Connection string to Redis used by Basket API
  27. keystore:
  28. svc: keystore-data # Name of k8s svc for keystore-data redis
  29. constr: keystore-data # Connection string to Redis used as a Keystore (by Identity API)
  30. eventbus:
  31. svc: rabbitmq # Name of k8s svc for rabbitmq
  32. constr: rabbitmq # Event bus connection string
  33. useAzure: false # true if use Azure Service Bus. False if RabbitMQ
  34. appinsights:
  35. key: "" # App insights to use
  36. k8s: # inf.k8s defines Kubernetes cluster global config
  37. dns: "" # k8s external DNS. This value or ip value MUST BE PROVIDED
  38. local: false # True when deploying on "local K8s" provided by Docker Desktop.
  39. misc: # inf.misc contains miscellaneous configuration related to infrastructure
  40. useAzureStorage: false # If catalog api uses azure storage or not
  41. # registry: # Uncomment "registry" to specify registry secret
  42. # secretName: # secretName is the name of the secret inside k8s
  43. # server: # Registry login server
  44. # login: # User login
  45. # pwd: # User pwd