multiple-ingress-values.yaml 893 B

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