multiple-ingress-values.yaml 982 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. mode: deployment
  2. image:
  3. repository: "otel/opentelemetry-collector-k8s"
  4. command:
  5. name: "otelcol-k8s"
  6. resources:
  7. limits:
  8. cpu: 100m
  9. memory: 200M
  10. ingress:
  11. enabled: true
  12. ingressClassName: nginx
  13. annotations:
  14. test.io/collector: default
  15. hosts:
  16. - host: defaultcollector.example.com
  17. paths:
  18. - path: /
  19. pathType: Prefix
  20. port: 4318
  21. additionalIngresses:
  22. - name: additional-basic
  23. hosts:
  24. - host: additional-basic.example.com
  25. paths:
  26. - path: /
  27. pathType: Prefix
  28. port: 4318
  29. - name: additional-advanced
  30. ingressClassName: nginx
  31. annotations:
  32. test.io/ingress: additional-advanced
  33. hosts:
  34. - host: additional-advanced.example.com
  35. paths:
  36. - path: /
  37. pathType: Exact
  38. port: 4318
  39. tls:
  40. - secretName: somesecret
  41. hosts:
  42. - additional-advanced.example.com