2018-06-14 11:59:05 +02:00
replicaCount : 1
clusterName : eshop-aks
pathBase : /ordering-api
image :
repository : eshop/ordering.api
tag : latest
pullPolicy : IfNotPresent
service :
type : ClusterIP
port : 80
2019-09-10 16:14:04 +02:00
grpcPort : 81
2018-06-14 11:59:05 +02:00
ingress :
enabled : false
annotations : {}
hosts :
- chart-example.local
tls : [ ]
resources : {}
nodeSelector : {}
tolerations : [ ]
affinity : {}
# env defines the environment variables that will be declared in the pod
env :
urls :
# configmap declares variables which value is taken from the config map defined in template configmap.yaml (name is name of var and key the key in configmap).
configmap :
- name : ConnectionString
key : ordering__ConnectionString
- name : ApplicationInsights__InstrumentationKey
key : all__InstrumentationKey
- name : EventBusConnection
key : all__EventBusConnection
- name : AzureServiceBusEnabled
key : all__UseAzureServiceBus
2021-01-21 16:12:47 +05:30
- name : UseLoadTest
key : ordering__EnableLoadTest
2018-06-14 11:59:05 +02:00
- name : IdentityUrl
key : urls__IdentityUrl
# values define environment variables with a fixed value (no configmap involved) (name is name of var, and value is its value)
values :
- name : ASPNETCORE_ENVIRONMENT
value : Development
- name : OrchestratorType
value : 'K8S'
2019-09-10 16:14:04 +02:00
- name : PORT
value : "80"
- name : GRPC_PORT
value : "81"
2019-01-29 11:35:43 +01:00
probes :
liveness :
path : /liveness
initialDelaySeconds : 10
periodSeconds : 15
2019-01-29 12:25:02 +01:00
port : 80
2019-01-29 11:35:43 +01:00
readiness :
path : /hc
2019-01-29 15:22:57 +01:00
timeoutSeconds : 5
2019-01-29 11:35:43 +01:00
initialDelaySeconds : 90
2019-01-29 15:22:57 +01:00
periodSeconds : 60
2019-01-29 12:25:02 +01:00
port : 80