From c68b7b8380ea8d2ac4da6b4739c6b8e157bb952b Mon Sep 17 00:00:00 2001 From: QiLiang Date: Sat, 31 Mar 2018 17:21:30 +0800 Subject: Add clover initial docker image build script - install dependent deb/pip packages - install basic tools istioctl, kubectl - install clover source code - build/upload docker image script - update requirements.txt - update module import path - To use this image use need setup kube-config file. e.g. `docker run -v /root/config:/root/.kube/config -it clover bash` Change-Id: I91044bb99ce8e2b785ef03212d961a97b3d42233 Signed-off-by: QiLiang --- docker/setup.sh | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 docker/setup.sh (limited to 'docker/setup.sh') diff --git a/docker/setup.sh b/docker/setup.sh new file mode 100755 index 0000000..459f44b --- /dev/null +++ b/docker/setup.sh @@ -0,0 +1,38 @@ +#!/bin/bash +# +# Copyright (c) Authors of Clover +# +# 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 +# + +set -ex + +# Get latest istio version, refer: https://git.io/getLatestIstio +if [ "x${ISTIO_VERSION}" = "x" ] ; then + ISTIO_VERSION=$(curl -L -s https://api.github.com/repos/istio/istio/releases/latest | \ + grep tag_name | sed "s/ *\"tag_name\": *\"\(.*\)\",*/\1/") +fi + +ISTIO_DIR_NAME="istio-$ISTIO_VERSION" + +cd /usr/local/ +curl -L https://git.io/getLatestIstio | sh - +mv $ISTIO_DIR_NAME istio-source + +# Install kubectl +curl -s http://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - +cat << EOF > /etc/apt/sources.list.d/kubernetes.list +deb http://apt.kubernetes.io/ kubernetes-xenial main +EOF + +apt-get update \ + && apt-get install -y --allow-downgrades kubectl=1.9.1-00 \ + && apt-get -y autoremove \ + && apt-get clean + +# Persistently append istioctl bin path to PATH env +echo 'export PATH="$PATH:/usr/local/istio-source/bin"' >> ~/.bashrc +echo "source <(kubectl completion bash)" >> ~/.bashrc -- cgit 1.2.3-korg