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
494 B
21 lines
494 B
---
|
|
- name: Download Oracle Linux public yum repo
|
|
get_url:
|
|
url: https://yum.oracle.com/public-yum-ol7.repo
|
|
dest: /etc/yum.repos.d/public-yum-ol7.repo
|
|
|
|
- name: Enable Oracle Linux repo
|
|
ini_file:
|
|
dest: /etc/yum.repos.d/public-yum-ol7.repo
|
|
section: "{{ item }}"
|
|
option: enabled
|
|
value: "1"
|
|
with_items:
|
|
- ol7_latest
|
|
- ol7_addons
|
|
- ol7_developer_EPEL
|
|
|
|
- name: Install packages requirements for bootstrap
|
|
yum:
|
|
name: container-selinux
|
|
state: present
|