facts.yaml 452 B

12345678910
  1. ---
  2. # The kubernetes version impacts the prometheus scraping endpoint
  3. # so gathering it before constructing the configmap
  4. - name: get oc version
  5. oc_version:
  6. register: oc_version
  7. - set_fact:
  8. kubernetes_version: "{{ '%.2f' | format(oc_version.results.kubernetes_short|float) }}"
  9. openshift_prometheus_serviceaccount_annotations: "{{ l_openshift_prometheus_serviceaccount_annotations + openshift_prometheus_serviceaccount_annotations|list }}"