-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.sh
executable file
·84 lines (59 loc) · 2.04 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/bash
######################################################################
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. #
# SPDX-License-Identifier: MIT-0 #
######################################################################
if [ -d /etc/apt ]; then
[ -n "$http_proxy" ] && echo "Acquire::http::proxy \"${http_proxy}\";" > /etc/apt/apt.conf; \
[ -n "$https_proxy" ] && echo "Acquire::https::proxy \"${https_proxy}\";" >> /etc/apt/apt.conf; \
[ -f /etc/apt/apt.conf ] && cat /etc/apt/apt.conf
fi
# Install basic tools
apt-get update -y && apt-get upgrade -y
apt-get install -y curl jq vim nano less unzip git gettext-base groff sudo htop bash-completion wget bc gcc bsdmainutils
# Install yq
./hyperpod/setup/install-yq.sh
# Install eksctl
./hyperpod/setup/eks/install-eksctl.sh
# Install kubectl
./hyperpod/setup/eks/install-kubectl.sh
# Install kubectx
./hyperpod/setup/eks/install-kubectx.sh
# Install kubetail
./hyperpod/setup/eks/install-kubetail.sh
# Install kubeshell
./hyperpod/setup/eks/install-kubeshell.sh
# Install helm
./hyperpod/setup/eks/install-helm.sh
# Install python
./hyperpod/setup/install-python.sh
python -m pip install torchx[kubernetes]
# Install stern using krew
./hyperpod/setup/eks/install-krew.sh
./hyperpod/setup/eks/install-stern.sh
# Install kubeps1 and configure bashrc aliases
./hyperpod/setup/eks/install-kubeps1.sh
# Install bash customizations
./hyperpod/setup/install-bashrc.sh
# Install hyperpod-eks
./hyperpod/setup/eks/install-hyperpod-eks.sh
# Install sbom utilities
./hyperpod/setup/install-sbom-utils.sh
if [ ! "$MOD" == "compact" ]; then
# Install docker
./hyperpod/setup/install-docker.sh
# Install golang
./hyperpod/setup/install-go.sh
# Install monitui
./hyperpod/setup/eks/install-monitui.sh
# Install k9s
./hyperpod/setup/eks/install-k9s.sh
apt clean
pip cache purge
fi
# Install aws cli
pushd ./hyperpod/setup
./install-aws-cli.sh
popd
# Generate SBOM and store it in the root of the container image
./sbom.sh