From a9f6a2b1665a31bbdaf266c333410bde2418cf15 Mon Sep 17 00:00:00 2001 From: hu xinhui Date: Tue, 14 Nov 2017 09:40:32 +0800 Subject: Support the scenario for installing kubernetes in ubuntu system JIRA: - Currently we only support the the scenario for installing kubernetes in centos system. This patch is to install kubernetes in ubuntu system Change-Id: Idc5eafea5d02c28c62a31e4c29451b8c5aaf1fd5 Signed-off-by: hu xinhui --- .../ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml') diff --git a/deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml b/deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml index 5bb77485..8054267d 100644 --- a/deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml +++ b/deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml @@ -54,6 +54,22 @@ path: /etc/apt/apt.conf state: absent +- name: rm sources.list + file: + path: /etc/apt/sources.list + state: absent + +- name: remove the space end of the line in the resolv.conf + shell: "sed -i 's/ *$//' /etc/resolv.conf" + +- name: change sources list + copy: + src: sources.list.official + dest: /etc/apt/sources.list + +- name: update apt cache + apt: update_cache=yes + - name: restart ntp service shell: "service ntp restart" -- cgit 1.2.3-korg