Skip to content
Snippets Groups Projects
Select Git revision
  • 8944cea9419f63ec745abab5ee7b8d5e7ae3670a
  • master default protected
2 results

ci-playbook.yml

Blame
  • ci-playbook.yml 796 B
    ---
    - hosts: "localhost"
      connection: local
      # Collect facts from remote system? Possible values: true, false
      gather_facts: true
      # any_error_fatal will mark all the hosts as failed if fails and immediately
      # abort the playbook execution. Possible values: true, false
      any_errors_fatal: false
      # max_fail_percentage allows you to abort the play if certain threshold of
      # failures have been reached.
      max_fail_percentage: 30
      serial: 30
      # hide sensitive information in verbose/debugging output from others.
      # Possible values: true, false
      no_log: false
      # execution strategy, possible values: debug, linear, serial, free
      # https://docs.ansible.com/ansible/latest/user_guide/playbooks_strategies.html
      strategy: linear
    
      roles:
        - {role: ansible_lza_repair, become: true}