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.

29 lines
1.5 KiB

  1. {{- $name := include "webshoppingagg.fullname" . -}}
  2. apiVersion: v1
  3. kind: ConfigMap
  4. metadata:
  5. name: "cfg-{{ $name }}"
  6. labels:
  7. app: {{ template "webshoppingagg.name" . }}
  8. chart: {{ template "webshoppingagg.chart" .}}
  9. release: {{ .Release.Name }}
  10. heritage: {{ .Release.Service }}
  11. data:
  12. all__InstrumentationKey: "{{ .Values.inf.appinsights.key }}"
  13. all_EnableLoadTest: "{{ .Values.inf.misc.useLoadTest }}"
  14. webshoppingagg__keystore: {{ .Values.inf.redis.keystore.constr }}
  15. internalurls__basket: http://{{ .Values.app.svc.basket }}
  16. internalurls__catalog: http://{{ .Values.app.svc.catalog }}
  17. internalurls__identity: http://{{ .Values.app.svc.identity }}
  18. internalurls__ordering: http://{{ .Values.app.svc.ordering }}
  19. internalurls__basket__hc: http://{{ .Values.app.svc.basket }}/hc
  20. internalurls__catalog__hc: http://{{ .Values.app.svc.catalog }}/hc
  21. internalurls__identity__hc: http://{{ .Values.app.svc.identity }}/hc
  22. internalurls__ordering__hc: http://{{ .Values.app.svc.ordering }}/hc
  23. internalurls__marketing__hc: http://{{ .Values.app.svc.marketing }}/hc
  24. internalurls__payment__hc: http://{{ .Values.app.svc.payment }}/hc
  25. internalurls__location__hc: http://{{ .Values.app.svc.locations }}/hc
  26. internalurls__grpcBasket: "http://{{ .Values.app.svc.basket }}:{{ .Values.service.grpcPort }}"
  27. internalurls__grpcCatalog: "http://{{ .Values.app.svc.catalog }}:{{ .Values.service.grpcPort }}"
  28. internalurls__grpcOrdering: "http://{{ .Values.app.svc.ordering }}:{{ .Values.service.grpcPort }}"