determine_version.yaml 955 B

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