X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=env%2Fmetal3%2F01_install_package.sh;h=8b8c36fe14aa40cf047de36380f0062efe1fbce8;hb=43dbb5a2353606d1801f08dcf3e2fd06399843fb;hp=4d4be9f1426c64d1630ab1ebab14ae899d48e5db;hpb=d97c70768d15571872233922caf17c4a4c34065b;p=icn.git diff --git a/env/metal3/01_install_package.sh b/env/metal3/01_install_package.sh index 4d4be9f..8b8c36f 100755 --- a/env/metal3/01_install_package.sh +++ b/env/metal3/01_install_package.sh @@ -12,12 +12,15 @@ if [[ $EUID -ne 0 ]]; then fi function install_essential_packages { + export DEBIAN_FRONTEND=noninteractive apt-get update apt-get -y install \ + ca-certificates \ crudini \ curl \ dnsmasq \ figlet \ + ipcalc \ nmap \ patch \ psmisc \ @@ -27,8 +30,7 @@ function install_essential_packages { vim \ wget \ git \ - software-properties-common \ - bridge-utils + software-properties-common update-alternatives --install /usr/bin/python python /usr/bin/python3 1 update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1 @@ -52,74 +54,19 @@ function install_ironic_packages { genisoimage \ whois - if [ "$1" == "offline" ]; then - pip install --no-index - --find-links=file:$PIP_CACHE_DIR locat yq - return - fi - pip install \ lolcat \ yq } -function install_docker_packages { - apt-get remove docker \ - docker-engine \ - docker.io \ - containerd \ - runc - apt-get update - apt-get -y install \ - apt-transport-https \ - ca-certificates \ - curl \ - gnupg-agent \ - software-properties-common - if [ "$1" != "offline" ]; then - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - add-apt-repository \ - "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ - $(lsb_release -cs) \ - stable" - apt-get update - fi - apt-get -y install docker-ce=18.06.0~ce~3-0~ubuntu -} - -function install_podman_packages { - if [ "$1" != "offline" ]; then - add-apt-repository -y ppa:projectatomic/ppa - apt-get update - fi - apt-get -y install podman -} - -function install_kubernetes_packages { - if [ "$1" != "offline" ]; then - curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add - - bash -c 'cat </etc/apt/sources.list.d/kubernetes.list -deb https://apt.kubernetes.io/ kubernetes-xenial main -EOF' - apt-get update - fi - apt-get install -y kubelet=1.15.0-00 kubeadm=1.15.0-00 kubectl=1.15.0-00 - apt-mark hold kubelet kubeadm kubectl -} - install() { install_essential_packages - install_ironic_packages $1 - - #install_docker_packages $1 - #install_podman_packages $1 - #install_kubernetes_packages $1 + install_ironic_packages + install_kustomize + install_clusterctl + install_flux_cli + install_sops + install_emcoctl } -if [ "$#" -eq 0 ]; then - install online -elif [ "$1" == "-o" ]; then - install offline -else - exit 1 -fi +install