X Tutup
Skip to content

Commit ffd2e0e

Browse files
committed
Fixing ansible playbook for centos installation
Signed-off-by: Abhinandan Prativadi <abhi@docker.com>
1 parent 73a5f7d commit ffd2e0e

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

contrib/ansible/tasks/bootstrap_centos.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
yum:
44
name: "{{ item }}"
55
state: latest
6-
with_items:
7-
- unzip
8-
- tar
9-
- btrfs-progs-devel
10-
- libseccomp-devel
11-
- util-linux
12-
- socat
13-
- libselinux-python
6+
with_items:
7+
- unzip
8+
- tar
9+
- btrfs-progs-devel
10+
- libseccomp-devel
11+
- util-linux
12+
- socat
13+
- libselinux-python

contrib/ansible/tasks/k8s.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
gpgcheck: yes
2626
enabled: yes
2727
repo_gpgcheck: yes
28-
gpgkey: https://packages.cloud.google.com/yum/doc/yum-key.gpg
28+
gpgkey:
29+
- https://packages.cloud.google.com/yum/doc/yum-key.gpg
30+
- https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
2931
when: ansible_distribution == "CentOS"
3032

3133
- name: "Disable SELinux (CentOS)"

0 commit comments

Comments
 (0)
X Tutup