determine_version.yaml 740 B

12345678910111213141516171819
  1. ---
  2. # debating making this a module instead?
  3. - fail:
  4. msg: Missing version to install provided by 'openshift_logging_image_version'
  5. when: not openshift_logging_image_version or openshift_logging_image_version == ''
  6. - set_fact:
  7. es_version: "{{ __latest_es_version }}"
  8. when: openshift_logging_image_version == 'latest'
  9. - debug: var=openshift_logging_image_version
  10. # should we just assume that we will have the correct major version?
  11. - set_fact: es_version="{{ openshift_logging_image_version | regex_replace('^v?(?P<major>\d)\.(?P<minor>\d).*$', '3_\\g<minor>') }}"
  12. when: openshift_logging_image_version != 'latest'
  13. - fail:
  14. msg: Invalid version specified for Elasticsearch
  15. when: es_version not in __allowed_es_versions