Merge pull request #1051 from dotnet-architecture/fix/1046-install-local-kubernetes-with-helm-power-shell
Handle empty Application Insights instrumentation key
This commit is contained in:
commit
82817a53fb
@ -29,7 +29,7 @@ app: # app global settings
|
|||||||
catalog: catalog # service name for catalog api
|
catalog: catalog # service name for catalog api
|
||||||
ordering: ordering # service name for ordering api
|
ordering: ordering # service name for ordering api
|
||||||
orderingbackgroundtasks: orderingbackgroundtasks # service name for orderingbackgroundtasks
|
orderingbackgroundtasks: orderingbackgroundtasks # service name for orderingbackgroundtasks
|
||||||
orderingsignalrhub: ordering-signalrhub # service name for orderingsignalrhub
|
orderingsignalrhub: ordering-signalrhub # service name for orderingsignalrhub
|
||||||
identity: identity # service name for identity api
|
identity: identity # service name for identity api
|
||||||
mvc: webmvc # service name for web mvc
|
mvc: webmvc # service name for web mvc
|
||||||
spa: webspa # service name for web spa
|
spa: webspa # service name for web spa
|
||||||
|
@ -15,5 +15,5 @@ data:
|
|||||||
urls__IdentityUrl: http://{{ $identity }}
|
urls__IdentityUrl: http://{{ $identity }}
|
||||||
basket__EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
basket__EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
@ -16,5 +16,5 @@ data:
|
|||||||
catalog__PicBaseUrl: http://{{ $webshoppingapigw }}/api/v1/c/catalog/items/[0]/pic/
|
catalog__PicBaseUrl: http://{{ $webshoppingapigw }}/api/v1/c/catalog/items/[0]/pic/
|
||||||
catalog__AzureStorageEnabled: "{{ .Values.inf.misc.useAzureStorage }}"
|
catalog__AzureStorageEnabled: "{{ .Values.inf.misc.useAzureStorage }}"
|
||||||
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
@ -24,7 +24,7 @@ metadata:
|
|||||||
data:
|
data:
|
||||||
identity__ConnectionString: Server={{ $sqlsrv }};Initial Catalog={{ .Values.inf.sql.identity.db }};User Id={{ .Values.inf.sql.common.user }};Password={{ .Values.inf.sql.common.pwd }};
|
identity__ConnectionString: Server={{ $sqlsrv }};Initial Catalog={{ .Values.inf.sql.identity.db }};User Id={{ .Values.inf.sql.common.user }};Password={{ .Values.inf.sql.common.pwd }};
|
||||||
identity__keystore: {{ .Values.inf.redis.keystore.constr }}
|
identity__keystore: {{ .Values.inf.redis.keystore.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
mvc_e: http://{{ $mvc_url }}
|
mvc_e: http://{{ $mvc_url }}
|
||||||
spa_e: http://{{ $spa_url }}
|
spa_e: http://{{ $spa_url }}
|
||||||
locations_e: http://{{ $locations_url }}
|
locations_e: http://{{ $locations_url }}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# This heml values file defines all infrastructure used by eShopOnContainers.
|
# This helm values file defines all infrastructure used by eShopOnContainers.
|
||||||
# It is used on all charts, so ** MUST BE INCLUDED ** on every deployment
|
# It is used on all charts, so ** MUST BE INCLUDED ** on every deployment
|
||||||
|
|
||||||
inf:
|
inf:
|
||||||
@ -15,11 +15,11 @@ inf:
|
|||||||
identity:
|
identity:
|
||||||
db: IdentityDb # Ordering API SQL db name
|
db: IdentityDb # Ordering API SQL db name
|
||||||
marketing:
|
marketing:
|
||||||
db: MarketingDb # Marketing API SQL db name
|
db: MarketingDb # Marketing API SQL db name
|
||||||
webhooks:
|
webhooks:
|
||||||
db: WebhooksDb # Webhooks DB
|
db: WebhooksDb # Webhooks DB
|
||||||
mongo:
|
mongo:
|
||||||
# host: my-nosql-data # Uncomment to use specify custom mongo host. By default nosql-data is used
|
# host: my-nosql-data # Uncomment to use specify custom mongo host. By default nosql-data is used
|
||||||
locations:
|
locations:
|
||||||
database: LocationsDb
|
database: LocationsDb
|
||||||
marketing:
|
marketing:
|
||||||
|
@ -13,7 +13,7 @@ metadata:
|
|||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
data:
|
data:
|
||||||
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
||||||
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
internalurls__IdentityUrl: http://{{ .Values.app.svc.identity }}
|
internalurls__IdentityUrl: http://{{ .Values.app.svc.identity }}
|
||||||
|
@ -15,7 +15,7 @@ metadata:
|
|||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
data:
|
data:
|
||||||
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
||||||
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
internalurls__IdentityUrl: http://{{ .Values.app.svc.identity }}
|
internalurls__IdentityUrl: http://{{ .Values.app.svc.identity }}
|
||||||
|
@ -10,7 +10,7 @@ metadata:
|
|||||||
release: {{ .Release.Name }}
|
release: {{ .Release.Name }}
|
||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
data:
|
data:
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
mobileshoppingagg__keystore: {{ .Values.inf.redis.keystore.constr }}
|
mobileshoppingagg__keystore: {{ .Values.inf.redis.keystore.constr }}
|
||||||
internalurls__basket: http://{{ .Values.app.svc.basket }}
|
internalurls__basket: http://{{ .Values.app.svc.basket }}
|
||||||
|
@ -16,5 +16,5 @@ data:
|
|||||||
ordering__EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
ordering__EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
urls__IdentityUrl: http://{{ $identity }}
|
urls__IdentityUrl: http://{{ $identity }}
|
||||||
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
@ -15,7 +15,7 @@ data:
|
|||||||
ordering__ConnectionString: Server={{ $sqlsrv }};Initial Catalog={{ .Values.inf.sql.ordering.db }};User Id={{ .Values.inf.sql.common.user }};Password={{ .Values.inf.sql.common.pwd }};
|
ordering__ConnectionString: Server={{ $sqlsrv }};Initial Catalog={{ .Values.inf.sql.ordering.db }};User Id={{ .Values.inf.sql.common.user }};Password={{ .Values.inf.sql.common.pwd }};
|
||||||
ordering__EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
ordering__EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
||||||
graceperiodmanager__CheckUpdateTime: "{{ .Values.cfg.checkUpdateTime }}"
|
graceperiodmanager__CheckUpdateTime: "{{ .Values.cfg.checkUpdateTime }}"
|
||||||
graceperiodmanager__GracePeriodTime: "{{ .Values.cfg.gracePeriodTime }}"
|
graceperiodmanager__GracePeriodTime: "{{ .Values.cfg.gracePeriodTime }}"
|
@ -12,7 +12,7 @@ metadata:
|
|||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
data:
|
data:
|
||||||
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
||||||
signalr__StoreConnectionString: {{ .Values.inf.redis.keystore.constr }}
|
signalr__StoreConnectionString: {{ .Values.inf.redis.keystore.constr }}
|
||||||
urls__IdentityUrl: http://{{ $identity }}
|
urls__IdentityUrl: http://{{ $identity }}
|
@ -11,5 +11,5 @@ metadata:
|
|||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
data:
|
data:
|
||||||
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
@ -16,5 +16,5 @@ data:
|
|||||||
urls__IdentityUrl: http://{{ $identity }}
|
urls__IdentityUrl: http://{{ $identity }}
|
||||||
urls__IdentityUrlExternal: http://{{ $identity }}
|
urls__IdentityUrlExternal: http://{{ $identity }}
|
||||||
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
all__EventBusConnection: {{ .Values.inf.eventbus.constr }}
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
@ -14,7 +14,7 @@ metadata:
|
|||||||
release: {{ .Release.Name }}
|
release: {{ .Release.Name }}
|
||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
data:
|
data:
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
||||||
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
webmvc__keystore: {{ .Values.inf.redis.keystore.constr }}
|
webmvc__keystore: {{ .Values.inf.redis.keystore.constr }}
|
||||||
|
@ -10,7 +10,7 @@ metadata:
|
|||||||
release: {{ .Release.Name }}
|
release: {{ .Release.Name }}
|
||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
data:
|
data:
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
webshoppingagg__keystore: {{ .Values.inf.redis.keystore.constr }}
|
webshoppingagg__keystore: {{ .Values.inf.redis.keystore.constr }}
|
||||||
internalurls__basket: http://{{ .Values.app.svc.basket }}
|
internalurls__basket: http://{{ .Values.app.svc.basket }}
|
||||||
|
@ -16,7 +16,7 @@ metadata:
|
|||||||
release: {{ .Release.Name }}
|
release: {{ .Release.Name }}
|
||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
data:
|
data:
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
webspa__keystore: {{ .Values.inf.redis.keystore.constr }}
|
webspa__keystore: {{ .Values.inf.redis.keystore.constr }}
|
||||||
internalurls__apigwws: http://{{ .Values.app.svc.webshoppingapigw }}
|
internalurls__apigwws: http://{{ .Values.app.svc.webshoppingapigw }}
|
||||||
|
@ -15,7 +15,7 @@ metadata:
|
|||||||
release: {{ .Release.Name }}
|
release: {{ .Release.Name }}
|
||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
data:
|
data:
|
||||||
all__InstrumentationKey: {{ .Values.inf.appinsights.key }}
|
all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
|
||||||
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
all__UseAzureServiceBus: "{{ .Values.inf.eventbus.useAzure }}"
|
||||||
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
|
||||||
webstatus__keystore: {{ .Values.inf.redis.keystore.constr }}
|
webstatus__keystore: {{ .Values.inf.redis.keystore.constr }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user