From ab73374e424a679cc42b9812e6bd39a49fcea07d Mon Sep 17 00:00:00 2001 From: ramamani yeleswarapu Date: Mon, 26 Mar 2018 14:23:49 -0700 Subject: Stor4nfv: Install ansible version 2.4 Ansible 2.5 release is causing errors in the installation of ceph-ansible (for ceph-mon). This patch fixes the ansible version installed on kube_master to 2.4.3 to address the ceph errors. Also, adds these post-install tasks: - run 'modprobe rbd' - create opensds default profile - create csi pods. Change-Id: Iee8d27da68896009d2e27ce4a6c7f805524d086d Signed-off-by: Ramamani Yeleswarapu --- .../roles/stor4nfv/templates/post-install.yml.j2 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 plugins/stor4nfv/roles/stor4nfv/templates/post-install.yml.j2 (limited to 'plugins/stor4nfv/roles/stor4nfv/templates/post-install.yml.j2') diff --git a/plugins/stor4nfv/roles/stor4nfv/templates/post-install.yml.j2 b/plugins/stor4nfv/roles/stor4nfv/templates/post-install.yml.j2 new file mode 100644 index 00000000..662abc34 --- /dev/null +++ b/plugins/stor4nfv/roles/stor4nfv/templates/post-install.yml.j2 @@ -0,0 +1,20 @@ +# ############################################################################# +# Copyright (c) 2018 Intel Corp. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +# ############################################################################# +--- + +- hosts: + - mons + - osds + - mgrs + + tasks: + - name: run modprobe rbd + remote_user: root + command: modprobe rbd + ignore_errors: "true" -- cgit 1.2.3-korg