Skip to content
Snippets Groups Projects
Select Git revision
  • ea6af449a8d8cade3e830a85db9f7fd34ecb66c5
  • master default protected
  • v2.27.1
  • v2.28.0
  • v2.27.0
  • v2.25.1
  • v2.24.3
  • v2.26.0
  • v2.24.2
  • v2.25.0
  • v2.24.1
  • v2.22.2
  • v2.23.3
  • v2.24.0
  • v2.23.2
  • v2.23.1
  • v2.23.0
  • v2.22.1
  • v2.22.0
  • v2.21.0
  • v2.20.0
  • v2.19.1
22 results

flannel.md

Blame
  • env_cleanup.yml 1.99 KiB
    ---
    # Cleanup tasks for the service module tests.
    - name: Ensure services are absent.
      ipaservice:
        ipaadmin_password: SomeADMINpassword
        ipaapi_context: "{{ ipa_context | default(omit) }}"
        name:
          - "HTTP/{{ svc_fqdn }}"
          - "HTTP/{{ nohost_fqdn }}"
          - HTTP/svc.ihavenodns.info
          - HTTP/no.idontexist.local
          - HTTP/no.idontexist.info
          - "cifs/{{ host1_fqdn }}"
        continue: yes
        state: absent
    
    - name: Ensure host "{{ svc_fqdn }}" is absent
      ipahost:
        ipaadmin_password: SomeADMINpassword
        ipaapi_context: "{{ ipa_context | default(omit) }}"
        name: "{{ svc_fqdn }}"
        update_dns: yes
        state: absent
    
    - name: Ensure host is absent
      ipahost:
        ipaadmin_password: SomeADMINpassword
        ipaapi_context: "{{ ipa_context | default(omit) }}"
        name:
          - "{{ host1_fqdn }}"
          - "{{ host2_fqdn }}"
          - "{{ nohost_fqdn }}"
          - svc.ihavenodns.info
        update_dns: no
        state: absent
    
    - name: Ensure testing users are absent.
      ipauser:
        ipaadmin_password: SomeADMINpassword
        ipaapi_context: "{{ ipa_context | default(omit) }}"
        name:
        - user01
        - user02
        state: absent
    
    - name: Ensure testing groups are absent.
      ipagroup:
        ipaadmin_password: SomeADMINpassword
        ipaapi_context: "{{ ipa_context | default(omit) }}"
        name:
        - group01
        - group02
        state: absent
    
    - name: Ensure testing hostgroup hostgroup01 is absent.
      ipagroup:
        ipaadmin_password: SomeADMINpassword
        ipaapi_context: "{{ ipa_context | default(omit) }}"
        name:
          - hostgroup01
        state: absent
    
    - name: Ensure testing hostgroup hostgroup02 is absent.
      ipagroup:
        ipaadmin_password: SomeADMINpassword
        ipaapi_context: "{{ ipa_context | default(omit) }}"
        name:
          - hostgroup02
        state: absent