From 36108b1db837b273ac511ca24f21e2c2c44ef3c9 Mon Sep 17 00:00:00 2001 From: Tin Lam Date: Sat, 6 Apr 2019 22:57:35 -0500 Subject: [PATCH] Fix YAML indentation Trivial fix. This patch set fixes inconsistent indentations in YAML file. Change-Id: I98ed9680d93f9c21e44b7da8462c9ce3607350bd Signed-off-by: Tin Lam --- .../tasks/support-packages.yaml | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tools/images/kubeadm-aio/assets/opt/playbooks/roles/deploy-kubelet/tasks/support-packages.yaml b/tools/images/kubeadm-aio/assets/opt/playbooks/roles/deploy-kubelet/tasks/support-packages.yaml index a0c00cf79..f7b4f3c8c 100644 --- a/tools/images/kubeadm-aio/assets/opt/playbooks/roles/deploy-kubelet/tasks/support-packages.yaml +++ b/tools/images/kubeadm-aio/assets/opt/playbooks/roles/deploy-kubelet/tasks/support-packages.yaml @@ -16,26 +16,26 @@ - name: ubuntu | ensure community ceph repository key is installed when: ansible_distribution == 'Ubuntu' apt_key: - id: "460F3994" - keyserver: "keyserver.ubuntu.com" - state: present + id: "460F3994" + keyserver: "keyserver.ubuntu.com" + state: present - name: ubuntu | ensure community ceph repository exists when: ansible_distribution == 'Ubuntu' apt_repository: - repo: "deb https://download.ceph.com/debian-mimic/ {{ ansible_lsb.codename }} main" - state: present - update_cache: yes + repo: "deb https://download.ceph.com/debian-mimic/ {{ ansible_lsb.codename }} main" + state: present + update_cache: yes - name: centos | ensure community ceph repository exists when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux' yum_repository: - name: ceph - description: "Ceph community packages for Redhat/Centos" - gpgkey: "https://download.ceph.com/keys/release.asc" - baseurl: "https://download.ceph.com/rpm-mimic/el7/$basearch" - gpgcheck: yes - state: present + name: ceph + description: "Ceph community packages for Redhat/Centos" + gpgkey: "https://download.ceph.com/keys/release.asc" + baseurl: "https://download.ceph.com/rpm-mimic/el7/$basearch" + gpgcheck: yes + state: present - name: centos | installing epel-release when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'