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.

71 lines
1.7 KiB

6 years ago
6 years ago
  1. replicaCount: 1
  2. clusterName: eshop-aks
  3. pathBase: /webmvc
  4. image:
  5. repository: eshop/webmvc
  6. tag: latest
  7. pullPolicy: IfNotPresent
  8. service:
  9. type: ClusterIP
  10. port: 80
  11. ingress:
  12. enabled: true
  13. annotations: {}
  14. tls: []
  15. resources: {}
  16. nodeSelector: {}
  17. tolerations: []
  18. affinity: {}
  19. # env defines the environment variables that will be declared in the pod
  20. env:
  21. urls:
  22. # 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).
  23. configmap:
  24. - name: ApplicationInsights__InstrumentationKey
  25. key: all__InstrumentationKey
  26. - name: UseLoadTest
  27. key: all_EnableLoadTest
  28. - name: DPConnectionString
  29. key: webmvc__keystore
  30. - name: PurchaseUrl
  31. key: internalurls__apigwws
  32. - name: ExternalPurchaseUrl
  33. key: urls__apigwws
  34. - name: CallBackUrl
  35. key: urls__mvc
  36. - name: IdentityUrl
  37. key: urls__IdentityUrl
  38. - name: MarketingUrl
  39. key: internalurls__apigwwm
  40. - name: BasketUrlHC
  41. key: internalurls__basket__hc
  42. - name: CatalogUrlHC
  43. key: internalurls__catalog__hc
  44. - name: IdentityUrlHC
  45. key: internalurls__identity__hc
  46. - name: OrderingUrlHC
  47. key: internalurls__ordering__hc
  48. - name: MarketingUrlHC
  49. key: internalurls__marketing__hc
  50. - name: PaymentUrlHC
  51. key: internalurls__payment__hc
  52. - name: SignalrHubUrl
  53. key: urls__apigwws
  54. # values define environment variables with a fixed value (no configmap involved) (name is name of var, and value is its value)
  55. values:
  56. - name: ASPNETCORE_ENVIRONMENT
  57. value: Development
  58. - name: OrchestratorType
  59. value: 'K8S'
  60. - name: IsClusterEnv
  61. value: 'True'