allinone-configmap.yaml 342 B

123456789101112
  1. {{- if .Values.allInOne.samplingConfig }}
  2. apiVersion: v1
  3. kind: ConfigMap
  4. metadata:
  5. name: {{ include "jaeger.fullname" . }}-sampling-strategies
  6. labels:
  7. {{- include "jaeger.labels" . | nindent 4 }}
  8. app.kubernetes.io/component: all-in-one
  9. data:
  10. strategies.json: |-
  11. {{ tpl .Values.allInOne.samplingConfig . | indent 4 }}
  12. {{- end }}