route.j2 965 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. apiVersion: v1
  2. kind: Route
  3. metadata:
  4. name: {{ name }}
  5. {% if annotations is defined %}
  6. annotations: {{ annotations | to_yaml }}
  7. {% endif %}
  8. {% if labels is defined and labels %}
  9. labels:
  10. {% for k, v in labels.iteritems() %}
  11. {{ k }}: {{ v }}
  12. {% endfor %}
  13. {% endif %}
  14. spec:
  15. host: {{ host }}
  16. to:
  17. kind: {{ to.kind }}
  18. name: {{ to.name }}
  19. {% if tls is defined %}
  20. tls:
  21. termination: {{ tls.termination }}
  22. {% if tls.ca_certificate is defined and tls.ca_certificate | length > 0 %}
  23. caCertificate: |
  24. {{ tls.ca_certificate|indent(6, true) }}
  25. {% endif %}
  26. {% if tls.key is defined and tls.key | length > 0 %}
  27. key: |
  28. {{ tls.key|indent(6, true) }}
  29. {% endif %}
  30. {% if tls.certificate is defined and tls.certificate | length > 0 %}
  31. certificate: |
  32. {{ tls.certificate|indent(6, true) }}
  33. {% endif %}
  34. {% if tls.termination == 'reencrypt' %}
  35. destinationCACertificate: |
  36. {{ tls.destination_ca_certificate|indent(6, true) }}
  37. {% endif %}
  38. {% endif %}