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.

26 lines
1.3 KiB

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