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.

87 lines
2.1 KiB

  1. replicaCount: 1
  2. clusterName: eshop-aks
  3. pathBase: /webshoppingagg
  4. image:
  5. repository: eshop/webshoppingagg
  6. tag: latest
  7. pullPolicy: IfNotPresent
  8. service:
  9. type: ClusterIP
  10. port: 80
  11. grpcPort: 81
  12. ingress:
  13. enabled: false
  14. annotations: {}
  15. tls: []
  16. resources: {}
  17. nodeSelector: {}
  18. tolerations: []
  19. affinity: {}
  20. # env defines the environment variables that will be declared in the pod
  21. env:
  22. urls:
  23. # 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).
  24. configmap:
  25. - name: ApplicationInsights__InstrumentationKey
  26. key: all__InstrumentationKey
  27. - name: urls__basket
  28. key: internalurls__basket
  29. - name: urls__catalog
  30. key: internalurls__catalog
  31. - name: urls__orders
  32. key: internalurls__ordering
  33. - name: urls__identity
  34. key: internalurls__identity
  35. - name: CatalogUrlHC
  36. key: internalurls__catalog__hc
  37. - name: BasketUrlHC
  38. key: internalurls__basket__hc
  39. - name: IdentityUrlHC
  40. key: internalurls__identity__hc
  41. - name: OrderingUrlHC
  42. key: internalurls__ordering__hc
  43. - name: MarketingUrlHC
  44. key: internalurls__marketing__hc
  45. - name: PaymentUrlHC
  46. key: internalurls__payment__hc
  47. - name: LocationUrlHC
  48. key: internalurls__location__hc
  49. - name: urls__grpcBasket
  50. key: internalurls__grpcBasket
  51. - name: urls__grpcCatalog
  52. key: internalurls__grpcCatalog
  53. - name: urls__grpcOrdering
  54. key: internalurls__grpcOrdering
  55. # values define environment variables with a fixed value (no configmap involved) (name is name of var, and value is its value)
  56. values:
  57. - name: ASPNETCORE_ENVIRONMENT
  58. value: Development
  59. - name: ASPNETCORE_URLS
  60. value: http://0.0.0.0:80
  61. - name: OrchestratorType
  62. value: 'K8S'
  63. - name: IsClusterEnv
  64. value: 'True'
  65. probes:
  66. liveness:
  67. path: /liveness
  68. initialDelaySeconds: 10
  69. periodSeconds: 15
  70. port: 80
  71. readiness:
  72. path: /hc
  73. timeoutSeconds: 5
  74. initialDelaySeconds: 90
  75. periodSeconds: 60
  76. port: 80