determine_version.yaml 713 B

1234567891011121314151617
  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. fluentd_version: "{{ __latest_fluentd_version }}"
  8. when: openshift_logging_image_version == 'latest'
  9. # should we just assume that we will have the correct major version?
  10. - set_fact: fluentd_version="{{ openshift_logging_image_version | regex_replace('^v?(?P<major>\d)\.(?P<minor>\d).*$', '3_\\g<minor>') }}"
  11. when: openshift_logging_image_version != 'latest'
  12. - fail:
  13. msg: Invalid version specified for Fluentd
  14. when: fluentd_version not in __allowed_fluentd_versions