diff options
author | Bryan Sullivan <bryan.sullivan@att.com> | 2017-10-19 12:27:11 -0700 |
---|---|---|
committer | Bryan Sullivan <bryan.sullivan@att.com> | 2017-10-19 12:27:11 -0700 |
commit | ca7d9beb0ef51458c0f4adff7618b2db176eb87c (patch) | |
tree | e3481ac88589b3e7236ffe755fe82a7da3e80a0a /tools/kubernetes/k8s-cluster.sh | |
parent | a7b45153b1d155f32d335d13c58bcf55ab4a07c0 (diff) |
Install ceph for ceph-disk; run helm serve via nohup
JIRA: MODELS-23
Use fork of netarbiter while issues are being worked.
Use release name without underscores (issue?).
Change-Id: I88b7d585c3c2ded87d37b066a00bb505551da28c
Signed-off-by: Bryan Sullivan <bryan.sullivan@att.com>
Diffstat (limited to 'tools/kubernetes/k8s-cluster.sh')
-rw-r--r-- | tools/kubernetes/k8s-cluster.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/kubernetes/k8s-cluster.sh b/tools/kubernetes/k8s-cluster.sh index 0047527..a5cc07d 100644 --- a/tools/kubernetes/k8s-cluster.sh +++ b/tools/kubernetes/k8s-cluster.sh @@ -67,7 +67,7 @@ EOF sudo apt-get update # Next command is to workaround bug resulting in "PersistentVolumeClaim is not bound" for pod startup (remain in Pending) # TODO: reverify if this is still an issue in the final working script -sudo apt-get -y install ceph-common +sudo apt-get -y install ceph ceph-common sudo apt-get -y install --allow-downgrades kubectl=${KUBE_VERSION}-00 kubelet=${KUBE_VERSION}-00 kubeadm=${KUBE_VERSION}-00 # Needed for ceph setup etc sudo apt-get -y install jq @@ -229,6 +229,7 @@ function setup_helm() { chmod 700 get_helm.sh ./get_helm.sh helm init + nohup helm serve & helm repo update # TODO: Workaround for bug https://github.com/kubernetes/helm/issues/2224 # For testing use only! |