query-configmap.yaml 317 B

123456789101112
  1. {{- if .Values.query.config }}
  2. apiVersion: v1
  3. kind: ConfigMap
  4. metadata:
  5. name: {{ include "jaeger.fullname" . }}-ui-configuration
  6. labels:
  7. {{- include "jaeger.labels" . | nindent 4 }}
  8. app.kubernetes.io/component: query
  9. data:
  10. query-ui-config.json: |-
  11. {{ tpl .Values.query.config . | indent 4 }}
  12. {{- end }}