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.

53 lines
1.2 KiB

  1. replicaCount: 1
  2. clusterName: eshop-aks
  3. pathBase: /ordering-api
  4. image:
  5. repository: eshop/ordering.api
  6. tag: latest
  7. pullPolicy: IfNotPresent
  8. service:
  9. type: ClusterIP
  10. port: 80
  11. ingress:
  12. enabled: false
  13. annotations: {}
  14. hosts:
  15. - chart-example.local
  16. tls: []
  17. resources: {}
  18. nodeSelector: {}
  19. tolerations: []
  20. affinity: {}
  21. # env defines the environment variables that will be declared in the pod
  22. env:
  23. urls:
  24. # 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).
  25. configmap:
  26. - name: ConnectionString
  27. key: ordering__ConnectionString
  28. - name: ApplicationInsights__InstrumentationKey
  29. key: all__InstrumentationKey
  30. - name: EventBusConnection
  31. key: all__EventBusConnection
  32. - name: AzureServiceBusEnabled
  33. key: all__UseAzureServiceBus
  34. - name: UseLoadTest
  35. key: ordering__EnableLoadTest
  36. - name: IdentityUrl
  37. key: urls__IdentityUrl
  38. # values define environment variables with a fixed value (no configmap involved) (name is name of var, and value is its value)
  39. values:
  40. - name: ASPNETCORE_ENVIRONMENT
  41. value: Development
  42. - name: OrchestratorType
  43. value: 'K8S'