From b7a96ca8c9f98bc15d3d8eed8d8f7e25c865566b Mon Sep 17 00:00:00 2001 From: John Haan Date: Tue, 19 Feb 2019 02:21:01 +0900 Subject: [PATCH] Fix for absent link packages in ceph deployment shell There is no "make {package}" line in 030-ceph.sh file. It causes a failure to execute the shell script. Change-Id: If787abd7711a02313b6a2acae8a888b5609f27df --- tools/deployment/multinode/030-ceph.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/deployment/multinode/030-ceph.sh b/tools/deployment/multinode/030-ceph.sh index e5aebbcbf..cbacf7071 100755 --- a/tools/deployment/multinode/030-ceph.sh +++ b/tools/deployment/multinode/030-ceph.sh @@ -16,6 +16,12 @@ set -xe +#NOTE: Lint and package chart +make ceph-mon +make ceph-osd +make ceph-client +make ceph-provisioners + #NOTE: Deploy command [ -s /tmp/ceph-fs-uuid.txt ] || uuidgen > /tmp/ceph-fs-uuid.txt CEPH_PUBLIC_NETWORK="$(./tools/deployment/multinode/kube-node-subnet.sh)"