deployment-values.yaml 474 B

1234567891011121314151617181920212223242526272829
  1. global:
  2. test: templated-value
  3. mode: deployment
  4. image:
  5. repository: "otel/opentelemetry-collector-k8s"
  6. command:
  7. name: "otelcol-k8s"
  8. resources:
  9. limits:
  10. cpu: 100m
  11. memory: 200M
  12. # Tests `tpl` function reference used in pod labels and
  13. # ingress.hosts[*]
  14. podLabels:
  15. testLabel: "{{ .Values.global.test }}"
  16. ingress:
  17. enabled: true
  18. hosts:
  19. - host: "{{ .Values.global.test }}"
  20. paths:
  21. - path: /
  22. pathType: Prefix
  23. port: 4318