サーチ…


備考

公式ドキュメントでは、プレイブックの条件を説明しています。

不可能な(github)

どのような種類の条件を使用するのですか?

条件ビアを使う(構文は[brackets] ):

  • [ when: ]

    Task:
       - name: run if operating system is debian
         command: echo "I am a Debian Computer"
         when: ansible_os_family == "Debian"
    
  • ループ[ with_items: ]

  • ループ[ with_dicts: ]

  • カスタム事実[ when: my_custom_facts == '1234']

  • 条件付き輸入

  • 変数に基づいてファイルとテンプレートを選択する

[When]条件: `ansible_os_family`リスト

一般的な使用

  • いつ:ansible_os_family == "CentOS"
  • when:ansible_os_family == "Redhat"
  • when:ansible_os_family == "ダーウィン"
  • when:ansible_os_family == "Debian"
  • いつ:ansible_os_family == "Windows"

すべてのリスト

ここで議論することに基づいてhttp://comments.gmane.org/gmane.comp.sysutils.ansible/4685

OS_FAMILY = dict(
            RedHat = 'RedHat',
            Fedora = 'RedHat', 
            CentOS = 'RedHat', 
            Scientific = 'RedHat',
            SLC = 'RedHat', 
            Ascendos = 'RedHat', 
            CloudLinux = 'RedHat', 
            PSBM = 'RedHat',
            OracleLinux = 'RedHat', 
            OVS = 'RedHat', 
            OEL = 'RedHat', 
            Amazon = 'RedHat',
            XenServer = 'RedHat', 
            Ubuntu = 'Debian', 
            Debian = 'Debian', 
            SLES = 'Suse',
            SLED = 'Suse', 
            OpenSuSE = 'Suse', 
            SuSE = 'Suse', 
            Gentoo = 'Gentoo',
            Archlinux = 'Archlinux', 
            Mandriva = 'Mandrake', 
            Mandrake = 'Mandrake',
            Solaris = 'Solaris', 
            Nexenta = 'Solaris',  
            OmniOS = 'Solaris', 
            OpenIndiana = 'Solaris',
            SmartOS = 'Solaris', 
            AIX = 'AIX', 
            Alpine = 'Alpine', 
            MacOSX = 'Darwin',
            FreeBSD = 'FreeBSD', 
            HPUX = 'HP-UX'
        )

条件

基本的な使用法

タスクまたはロールを実行するかスキップするかを制御するには、when条件を使用します。これは、通常、宛先システムからのファクトに基づいて再生動作を変更するために使用されます。このプレイブックを考えてみましょう:

- hosts: all
  tasks:
    - include: Ubuntu.yml
      when: ansible_os_family == "Ubuntu"
    
    - include: RHEL.yml
      when: ansible_os_family == "RedHat"

Ubuntu.ymlRHEL.ymlは、配布固有のロジックがいくつか含まれています。

もう1つの一般的な使用法は、結果を特定の有能なインベントリグループのものに限定することです。このインベントリファイルを考えてみましょう:

[dbs]
mydb01

[webservers]
myweb01

そしてこのプレイブック:

- hosts: all
  tasks:
    - name: Restart Apache on webservers
      become: yes
      service:
        name: apache2
        state: restarted
      when: webservers in group_names

これは、 group_names マジック変数を使用していgroup_names

条件付き構文と論理

シングル条件

構文

when: (condition)

  • when: ansible_os_family == "Debian"
  • when: ansible_pkg_mgr == "apt"
  • when: myvariablename is defined

ブールフィルタ

when: result|failed

複数の条件

構文

When: condition1 and/or condition2

例(単純)

when: ansible_os_family == "Debian" and ansible_pkg_mgr == "apt"

例(コンプレックス)

明瞭さまたは優先順位を制御するためにかっこを使用します。 「AND」は「OR」よりも優先順位が高くなります。

句は行にまたがることができます:

when:
  ansible_distribution in ['RedHat', 'CentOS', 'ScientificLinux'] and
  (ansible_distribution_version|version_compare('7', '<') or
  ansible_distribution_version|version_compare('8', '>='))
  or
  ansible_distribution == 'Fedora'
  or
  ansible_distribution == 'Ubuntu' and
  ansible_distribution_version|version_compare('15.04', '>=')

最初の配布チェックで「か」をグループ化するためにかっこを使用することに注意してください。

setupを使って `ansible_os_family`と` ansible_pkg_mgr`を入手してください

セットアップモジュールとフィルタのAd-Hocコマンドで、事実( ansible_os_familyansible_pkg_mgr )を取得できます。

  • ansible_os_family:

      $ ansible all -m setup -a 'filter=ansible_os_family'
      ra.local | SUCCESS => {
          "ansible_facts": {
              "ansible_os_family": "Debian"
          },
          "changed": false
      }
    
  • ansible_pkg_mgr:

      $ ansible all -m setup -a 'filter=ansible_pkg_mgr'
      debian.local | SUCCESS => {
          "ansible_facts": {
              "ansible_pkg_mgr": "apt"
          },
          "changed": false
      }
    

シンプルな「いつ」の例

与えられた:

---
variable_name: True

その後、これらのタスクは常に実行されます。

- name: This is a conditional task
  module: src=/example/ dest=/example
  when: variable_name 

- name: This is a conditional task
  module: src=/example/ dest=/example
  when: True

このタスクは決して実行されません。

- name: This is a conditional task
  module: src=/example/ dest=/example
  when: False

untilを使用して再試行のループチェックを行います

これは、起動中のWebアプリケーションのアライブチェックを実装するためにuntil / retries / delayを使用する例です。 Webappがソケット接続を拒否する時間帯(最大3分)があることを前提としています。その後、/ aliveページの "OK"という単語をチェックします。また、URLの取得を、実行可能なlocalhostに委譲します。これは、デプロイメントプレイブックの最終タスクとして理にかなっています。

---
- hosts: my-hosts
  tasks:
  - action: uri url=http://{{ ansible_all_ipv4_addresses }}:8080/alive return_content=yes
    delegate_to: localhost
    register: result
    until: "'failed' not in result and result.content.find('OK') != -1"
    retries: 18
    delay: 10

untilリトライパターンは、任意のアクションで使用できます。特定のシェルコマンドが望みの結果を返すまで待機する例が、安全なドキュメントに記載されています。http : //docs.ansible.com/ansible/playbooks_loops.html#do-until-loops



Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow