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.

83 lines
2.0 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: PaymentUrlHC
  44. key: internalurls__payment__hc
  45. - name: urls__grpcBasket
  46. key: internalurls__grpcBasket
  47. - name: urls__grpcCatalog
  48. key: internalurls__grpcCatalog
  49. - name: urls__grpcOrdering
  50. key: internalurls__grpcOrdering
  51. # values define environment variables with a fixed value (no configmap involved) (name is name of var, and value is its value)
  52. values:
  53. - name: ASPNETCORE_ENVIRONMENT
  54. value: Development
  55. - name: ASPNETCORE_URLS
  56. value: http://0.0.0.0:80
  57. - name: OrchestratorType
  58. value: 'K8S'
  59. - name: IsClusterEnv
  60. value: 'True'
  61. probes:
  62. liveness:
  63. path: /liveness
  64. initialDelaySeconds: 10
  65. periodSeconds: 15
  66. port: 80
  67. readiness:
  68. path: /hc
  69. timeoutSeconds: 5
  70. initialDelaySeconds: 90
  71. periodSeconds: 60
  72. port: 80