Browse Source

Fixed catalog db connection

pull/1259/head
Tim McCarthy 5 years ago
parent
commit
4a731f8324
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      deploy/aro/infrastructure/azure-pipelines.yml

+ 1
- 1
deploy/aro/infrastructure/azure-pipelines.yml View File

@ -20,7 +20,7 @@ stages:
displayName: 'Infrastructure Deployment' displayName: 'Infrastructure Deployment'
variables: variables:
SqlHostName: $[format('mssql-server-linux.{0}.svc', variables['OpenShiftProject'])] SqlHostName: $[format('mssql-server-linux.{0}.svc', variables['OpenShiftProject'])]
CatalogDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])]
CatalogDbConnection: 'Server=$(SqlHostName);Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=$(SqlUsername);Password=$(SqlPassword)'
IdentityDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.IdentityDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])] IdentityDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.IdentityDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])]
MarketingDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])] MarketingDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])]
OrderingDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])] OrderingDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])]


Loading…
Cancel
Save