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

ci-playbook.yml

Blame
  • ci-playbook.yml 790 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 }