57 lines
2.9 KiB
YAML
Raw Normal View History

2019-05-23 16:11:35 +01:00
# This helm values file defines all infrastructure used by eShopOnContainers.
# It is used on all charts, so ** MUST BE INCLUDED ** on every deployment
inf:
mesh:
2019-12-17 18:12:53 +01:00
enabled: false # True to enable Linkerd (set by deploy-all.ps1)
tls:
enabled: false # True to enable TLS (set by deploy-all.ps1)
issuer: "" # cert-manager issuer to use for retrieving certs (set by deploy-all.ps1)
sql: # inf.sql defines the sql server databases & logins
2018-07-03 19:07:37 +02:00
# host: my-sql-server # Uncomment to specify a custom sql-server to be used. By default "sql-data-<appname>" will be used
common:
user: sa # SQL user
pwd: Pass@word # SQL pwd
pid: Developer
2018-06-14 11:59:05 +02:00
catalog: # inf.sql.catalog: settings for the catalog-api sql (user, pwd, db)
db: CatalogDb # Catalog API SQL db name
2018-06-14 11:59:05 +02:00
ordering: # inf.sql.ordering: settings for the ordering-api sql (user, pwd, db)
db: OrderingDb # Ordering API SQL db name
identity:
db: IdentityDb # Ordering API SQL db name
marketing:
2019-05-23 16:11:35 +01:00
db: MarketingDb # Marketing API SQL db name
2019-02-06 10:21:47 +01:00
webhooks:
2019-05-23 16:11:35 +01:00
db: WebhooksDb # Webhooks DB
mongo:
2019-05-23 16:11:35 +01:00
# host: my-nosql-data # Uncomment to use specify custom mongo host. By default nosql-data is used
locations:
database: LocationsDb
marketing:
database: MarketingDb
redis: # inf.redis defines the redis' connection strings
2018-07-03 19:07:37 +02:00
basket:
svc: basket-data # Name of k8s svc for basket redis
constr: basket-data # Connection string to Redis used by Basket API
keystore:
2018-07-03 19:07:37 +02:00
svc: keystore-data # Name of k8s svc for keystore-data redis
constr: keystore-data # Connection string to Redis used as a Keystore (by Identity API)
eventbus:
2018-07-03 19:07:37 +02:00
svc: rabbitmq # Name of k8s svc for rabbitmq
constr: rabbitmq # Event bus connection string
useAzure: false # true if use Azure Service Bus. False if RabbitMQ
appinsights:
key: "" # App insights to use
k8s: # inf.k8s defines Kubernetes cluster global config
2018-07-09 14:20:27 +02:00
dns: "" # k8s external DNS. This value or ip value MUST BE PROVIDED
local: false # True when deploying on "local K8s" provided by Docker Desktop.
misc: # inf.misc contains miscellaneous configuration related to infrastructure
useLoadTest: false # If running under loading test or not
useAzureStorage: false # If catalog api uses azure storage or not
2018-07-03 19:07:37 +02:00
# registry: # Uncomment "registry" to specify registry secret
# secretName: # secretName is the name of the secret inside k8s
# server: # Registry login server
# login: # User login
# pwd: # User pwd