diff options
author | Bin Yang <bin.yang@windriver.com> | 2020-02-15 02:59:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-15 02:59:16 +0000 |
commit | 02c1758e47270d67c555f812375691f9a48c2f3c (patch) | |
tree | 0de550243aa0036a2553e80d588e4ca58a09ccd7 | |
parent | c06be6458e9985bd7ac0b25fab03d9c8605f6c4a (diff) | |
parent | d9d703d4903fb7047fb6d140618730c9497a3c87 (diff) |
Merge "Fix OVN issue in KUD"
-rw-r--r-- | kud/deployment_infra/playbooks/configure-ovn.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/kud/deployment_infra/playbooks/configure-ovn.yml b/kud/deployment_infra/playbooks/configure-ovn.yml index 28de6e94..fc4c21a4 100644 --- a/kud/deployment_infra/playbooks/configure-ovn.yml +++ b/kud/deployment_infra/playbooks/configure-ovn.yml @@ -15,6 +15,14 @@ file: "{{ item }}" with_items: - "{{ ansible_os_family }}.yml" + - name: get Wand GPI files + get_url: + url: https://packages.wand.net.nz/keyring.gpg + dest: /etc/apt/trusted.gpg.d/wand.gpg + - name: add WAND Debian Repo + apt_repository: + repo: "deb https://packages.wand.net.nz {{ ansible_lsb.codename }} ovs-2.10" + state: present - name: install OpenVSwitch packages package: name: "{{ item }}" |