diff options
author | Michael Hanselmann <hansmi@vshn.ch> | 2017-09-06 13:45:10 +0200 |
---|---|---|
committer | Michael Hanselmann <hansmi@vshn.ch> | 2017-09-06 14:12:48 +0200 |
commit | 028194f39eee85a44eb186dd5aab6f14268683a4 (patch) | |
tree | 1a125bbfeb2a1bda9fc5e9bd63192201134c8460 /roles/openshift_metrics/templates | |
parent | 338436926fe1ef6d089a08bfe011f0105665ab3d (diff) | |
download | openshift-028194f39eee85a44eb186dd5aab6f14268683a4.tar.gz openshift-028194f39eee85a44eb186dd5aab6f14268683a4.tar.bz2 openshift-028194f39eee85a44eb186dd5aab6f14268683a4.tar.xz openshift-028194f39eee85a44eb186dd5aab6f14268683a4.zip |
Support setting annotations on Hawkular route
Our setup uses annotations to request a separate component, namely the
ACME Controller[1], to request domain-validated certificates from the
Let's Encrypt CA. By setting the necessary annotation via Ansible rather
than manually the system will automatically retrieve a certificate.
[1] https://github.com/tnozicka/openshift-acme
Diffstat (limited to 'roles/openshift_metrics/templates')
-rw-r--r-- | roles/openshift_metrics/templates/route.j2 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/roles/openshift_metrics/templates/route.j2 b/roles/openshift_metrics/templates/route.j2 index 423ab54a3..253d6ecf5 100644 --- a/roles/openshift_metrics/templates/route.j2 +++ b/roles/openshift_metrics/templates/route.j2 @@ -2,6 +2,9 @@ apiVersion: v1 kind: Route metadata: name: {{ name }} +{% if annotations is defined %} + annotations: {{ annotations | to_yaml }} +{% endif %} {% if labels is defined and labels %} labels: {% for k, v in labels.iteritems() %} |