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.

52 lines
1.1 KiB

  1. replicaCount: 1
  2. clusterName: eshop-aks
  3. pathBase: /webhooks-web
  4. image:
  5. repository: eshop/webhooks.client
  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 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: WebhooksUrl
  27. key: urls__webhooks
  28. - name: IdentityUrl
  29. key: identity_e
  30. - name: CallbackUrl
  31. key: webhooksweb_e
  32. - name: SelfUrl
  33. key: webhooksweb_e
  34. # values define environment variables with a fixed value (no configmap involved) (name is name of var, and value is its value)
  35. values:
  36. - name: ASPNETCORE_ENVIRONMENT
  37. value: Production
  38. - name: OrchestratorType
  39. value: 'K8S'
  40. - name: Token
  41. value: "WebHooks-Demo-Web" # Can use whatever you want