summaryrefslogtreecommitdiffstats
path: root/roles/openshift_metrics/templates/route.j2
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2017-09-21 03:17:11 -0700
committerGitHub <noreply@github.com>2017-09-21 03:17:11 -0700
commitd9e8acafba7f4370145912732f0e305f57d617d8 (patch)
tree6591847908493b6bd23101cf77c08f67962dece8 /roles/openshift_metrics/templates/route.j2
parent00400ee296d285328353464b53c059c06e224315 (diff)
parent028194f39eee85a44eb186dd5aab6f14268683a4 (diff)
downloadopenshift-d9e8acafba7f4370145912732f0e305f57d617d8.tar.gz
openshift-d9e8acafba7f4370145912732f0e305f57d617d8.tar.bz2
openshift-d9e8acafba7f4370145912732f0e305f57d617d8.tar.xz
openshift-d9e8acafba7f4370145912732f0e305f57d617d8.zip
Merge pull request #5309 from vshn/metrics-annot1
Automatic merge from submit-queue 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/route.j2')
-rw-r--r--roles/openshift_metrics/templates/route.j23
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() %}