Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

README-dnszone.md

Blame
    • Rafael Guterres Jeffman's avatar
      7126dec0
      README-*: Bump minimum Ansible supported version to 2.15 · 7126dec0
      Rafael Guterres Jeffman authored
      ansible-freeipa roles do not work with Ansible 2.8 anymore, so the
      minimum supported version is changed to 2.15, the oldest supported
      Ansible version as of today.
      
      This patch includes the change to the version number in the collection
      and all plugin README files. The collection README was also update to
      remove text that related only to previous Ansible versions.
      7126dec0
      History
      README-*: Bump minimum Ansible supported version to 2.15
      Rafael Guterres Jeffman authored
      ansible-freeipa roles do not work with Ansible 2.8 anymore, so the
      minimum supported version is changed to 2.15, the oldest supported
      Ansible version as of today.
      
      This patch includes the change to the version number in the collection
      and all plugin README files. The collection README was also update to
      remove text that related only to previous Ansible versions.
    main.yml 3.65 KiB
    ---
    - name: validate-container-engine | check if fedora coreos
      stat:
        path: /run/ostree-booted
        get_attributes: no
        get_checksum: no
        get_mime: no
      register: ostree
      tags:
        - facts
    
    - name: validate-container-engine | set is_ostree
      set_fact:
        is_ostree: "{{ ostree.stat.exists }}"
      tags:
        - facts
    
    - name: Ensure kubelet systemd unit exists
      stat:
        path: "/etc/systemd/system/kubelet.service"
      register: kubelet_systemd_unit_exists
      tags:
        - facts
    
    - name: Populate service facts
      service_facts:
      tags:
        - facts
    
    - name: Check if containerd is installed
      find:
        file_type: file
        recurse: yes
        use_regex: yes
        patterns:
          - containerd.service$
        paths:
          - /lib/systemd
          - /etc/systemd
          - /run/systemd
      register: containerd_installed
      tags:
        - facts
    
    - name: Check if docker is installed
      find:
        file_type: file
        recurse: yes
        use_regex: yes
        patterns:
          - docker.service$
        paths:
          - /lib/systemd
          - /etc/systemd
          - /run/systemd
      register: docker_installed
      tags:
        - facts
    
    - name: Check if crio is installed
      find:
        file_type: file
        recurse: yes
        use_regex: yes
        patterns:
          - crio.service$
        paths:
          - /lib/systemd
          - /etc/systemd
          - /run/systemd