k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
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.
21 lines
758 B
21 lines
758 B
---
|
|
- name: Calico | Add wireguard yum repo
|
|
when:
|
|
- calico_wireguard_enabled
|
|
block:
|
|
|
|
- name: Calico | Add wireguard yum repo
|
|
yum_repository:
|
|
name: copr:copr.fedorainfracloud.org:jdoss:wireguard
|
|
file: _copr:copr.fedorainfracloud.org:jdoss:wireguard
|
|
description: Copr repo for wireguard owned by jdoss
|
|
baseurl: "{{ calico_wireguard_repo }}"
|
|
gpgcheck: true
|
|
gpgkey: https://download.copr.fedorainfracloud.org/results/jdoss/wireguard/pubkey.gpg
|
|
skip_if_unavailable: true
|
|
enabled: true
|
|
repo_gpgcheck: false
|
|
when:
|
|
- ansible_os_family in ['RedHat']
|
|
- ansible_distribution not in ['Fedora']
|
|
- ansible_facts['distribution_major_version'] | int < 9
|