You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.7 KiB
58 lines
1.7 KiB
--- |
|
# Copyright 2019 Red Hat, Inc. |
|
# All Rights Reserved. |
|
# |
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may |
|
# not use this file except in compliance with the License. You may obtain |
|
# a copy of the License at |
|
# |
|
# http://www.apache.org/licenses/LICENSE-2.0 |
|
# |
|
# Unless required by applicable law or agreed to in writing, software |
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
|
# License for the specific language governing permissions and limitations |
|
# under the License. |
|
|
|
|
|
- name: Install block |
|
become: true |
|
block: |
|
- name: ensure podman and deps are installed |
|
package: |
|
name: "{{ tripleo_podman_packages }}" |
|
state: latest |
|
|
|
- name: Check for cni0 interface |
|
command: ip link show cni0 |
|
changed_when: false |
|
failed_when: false |
|
register: cni0_interface |
|
|
|
- name: Delete cni0 interface |
|
command: ip link delete cni0 |
|
when: |
|
- cni0_interface.rc is defined |
|
- cni0_interface.rc == 0 |
|
|
|
- name: Check if 87-podman-bridge.conflist exists |
|
stat: |
|
path: /etc/cni/net.d/87-podman-bridge.conflist |
|
register: podman_bridge_config |
|
|
|
- name: Remove default cni config for cni0 if exists |
|
copy: |
|
dest: /etc/cni/net.d/87-podman-bridge.conflist |
|
content: '' |
|
force: true |
|
when: |
|
- podman_bridge_config.stat.exists | bool |
|
|
|
- name: Write containers registries.conf |
|
template: |
|
src: registries.conf.j2 |
|
dest: /etc/containers/registries.conf |
|
owner: root |
|
group: root |
|
setype: etc_t |
|
mode: '0644'
|
|
|