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.
 
 
 
 
 
 

59 lines
1.3 KiB

replicaCount: 1
clusterName: eshop-aks
pathBase: /webmvc
image:
repository: eshop/webmvc
tag: latest
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
ingress:
enabled: true
annotations: {}
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: ApplicationInsights__InstrumentationKey
key: all__InstrumentationKey
- name: UseLoadTest
key: all_EnableLoadTest
- name: DPConnectionString
key: webmvc__keystore
- name: PurchaseUrl
key: internalurls__apigwws
- name: ExternalPurchaseUrl
key: urls__apigwws
- name: CallBackUrl
key: urls__mvc
- name: IdentityUrl
key: urls__IdentityUrl
- name: IdentityUrlHC
key: internalurls__identity__hc
- name: SignalrHubUrl
key: urls__apigwws
# 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'
- name: IsClusterEnv
value: 'True'