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
1.6 KiB

6 years ago
6 years ago
6 years ago
  1. replicaCount: 1
  2. clusterName: eshop-aks
  3. pathBase: /identity
  4. image:
  5. repository: eshop/identity.api
  6. tag: latest
  7. pullPolicy: IfNotPresent
  8. service:
  9. type: ClusterIP
  10. port: 80
  11. ingress:
  12. enabled: true
  13. annotations: {}
  14. hosts:
  15. - chart-example.local
  16. tls: []
  17. resources: {}
  18. nodeSelector: {}
  19. tolerations: []
  20. affinity: {}
  21. env:
  22. urls:
  23. configmap:
  24. - name: ConnectionString
  25. key: identity__ConnectionString
  26. - name: DPConnectionString
  27. key: identity__keystore
  28. - name: ApplicationInsights__InstrumentationKey
  29. key: all__InstrumentationKey
  30. - name: MvcClient
  31. key: mvc_e
  32. - name: SpaClient
  33. key: spa_e
  34. - name: LocationApiClient
  35. key: locations_e
  36. - name: MarketingApiClient
  37. key: marketing_e
  38. - name: BasketApiClient
  39. key: basket_e
  40. - name: OrderingApiClient
  41. key: ordering_e
  42. - name: MobileShoppingAggClient
  43. key: mobileshoppingagg_e
  44. - name: WebShoppingAggClient
  45. key: webshoppingagg_e
  46. - name: XamarinCallback
  47. key: xamarin_callback_e
  48. - name: WebhooksApiClient
  49. key: webhooksapi_e
  50. - name: WebhooksWebClient
  51. key: webhooksweb_e
  52. - name: EnableDevspaces
  53. key: enableDevspaces
  54. values:
  55. - name: ASPNETCORE_ENVIRONMENT
  56. value: Development
  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
  73. enableDevspaces: "false"