multiple-ingress-values.yaml 982 B

12345678910111213141516171819202122232425262728293031323334353637
  1. components:
  2. frontendProxy:
  3. ingress:
  4. enabled: true
  5. ingressClassName: nginx
  6. annotations:
  7. test.io/collector: default
  8. hosts:
  9. - host: defaultcollector.example.com
  10. paths:
  11. - path: /
  12. pathType: Prefix
  13. port: 4318
  14. additionalIngresses:
  15. - name: additional-basic
  16. hosts:
  17. - host: additional-basic.example.com
  18. paths:
  19. - path: /
  20. pathType: Prefix
  21. port: 4318
  22. - name: additional-advanced
  23. ingressClassName: nginx
  24. annotations:
  25. test.io/ingress: additional-advanced
  26. hosts:
  27. - host: additional-advanced.example.com
  28. paths:
  29. - path: /
  30. pathType: Exact
  31. port: 4318
  32. tls:
  33. - secretName: somesecret
  34. hosts:
  35. - additional-advanced.example.com