-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·124 lines (105 loc) · 4.21 KB
/
install.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# FROM ubuntu:16.04
# WARNING: the summit passwd is lame.
USERNAME=summit
PW=summitpw
USERID=64534
GIT_KEY=git_key
export DEBIAN_FRONTEND=noninteractive
# Create an environment variable for the correct distribution
export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)"
# Add the Cloud SDK distribution URI as a package source
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee /etc/apt/sources.list.d/google-cloud-sdk.list
# Import the Google Cloud public key
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
apt-get update && apt-get upgrade -y && apt-get install -y \
autossh \
autotools-dev \
bridge-utils \
build-essential \
curl \
direnv \
emacs24 \
exim4 \
exuberant-ctags \
gdebi \
git \
golang \
google-cloud-sdk \
heirloom-mailx \
htop \
httpie \
jq \
keychain \
module-init-tools \
monit \
mosh \
munin \
ntpdate \
openssh-server \
python-software-properties \
silversearcher-ag \
software-properties-common \
sysstat \
tmux \
tree \
vim \
ufw \
unzip \
wget \
zsh
apt-get install -y apt-transport-https ca-certificates && \
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D && \
add-apt-repository "deb https://apt.dockerproject.org/repo ubuntu-$(lsb_release -s -c) main" && \
apt-get update && \
apt-cache policy docker-engine && \
DEBIAN_FRONTEND=noninteractive apt-get install -y linux-image-extra-$(uname -r) && \
apt-get install -y docker-engine && \
service docker start && \
systemctl enable docker && \
curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
export GIT_SSH_COMMAND="ssh -i ~/.ssh/$GIT_KEY"
export DEBIAN_FRONTEND=noninteractive
(mkdir -p ~/.config && cd ~/.config && git clone https://github.com/brianmd/docker-ubuntu.git && cd docker-ubuntu && ./install.sh)
git clone https://github.com/brianmd/dotfiles.git /root/.config/dotfiles
(cd /root/.config/dotfiles && ./prep-user-tools.sh)
ufw allow ssh && \
ufw allow mosh && \
ufw enable
gcloud components install kubectl
gcloud components install app-engine-java
# Kubernetes installation is going to be tricky -- this merely serves as a starting point.
# For more info, see http://kubernetes.io/docs/getting-started-guides/ubuntu/
(mkdir -p ~/Downloads && cd ~/Downloads && git clone --depth 1 https://github.com/kubernetes/kubernetes.git)
apt-get clean && \
rm -rf /var/lib/apt/lists/*/tmp/* /var/tmp/*
addgroup -gid $USERID $USERNAME
# adduser --disabled-password --gecos '' -u $USERID --gid $USERID $USERNAME ;\
useradd -m -u $USERID --gid $USERID $USERNAME -s /bin/zsh && \
usermod -aG docker $USERNAME && \
adduser $USERNAME sudo && \
echo "$USERNAME:${PW}" | chpasswd && \
echo "$USERNAME ALL=(ALL) ALL" | tee -a /etc/sudoers
sudo -u $USERNAME mkdir -p /home/$USERNAME/.ssh
if [[ -f authorized_keys ]]; then
sudo -u $USERNAME cp authorized_keys /home/$USERNAME/.ssh/
fi
if [[ -f ~/.ssh/$GIT_KEY ]]; then
cp ~/.ssh/$GIT_KEY /home/$USERNAME/.ssh/
fi
chown -R $USERNAME:$USERNAME /home/$USERNAME/.ssh
chmod -R 700 /home/$USERNAME/.ssh
# cd /home/$USERNAME
# sudo -u $USERNAME mkdir -p /home/$USERNAME/.config
# sudo -u $USERNAME git clone https://github.com/brianmd/dotfiles.git /home/$USERNAME/.config/dotfiles
# sudo -u $USERNAME git clone https://github.com/syl20bnr/spacemacs /home/$USERNAME/.emacs.d
# # sudo -iu $USERNAME sh -c 'cd /home/$USERNAME/.config/dotfiles && make relink'
# # RUN cd /home/$USERNAME/.config/dotfiles && git pull && echo 1
sudo -u $USERNAME -i -- sh -lc '(mkdir -p ~/.config && cd ~/.config && git clone https://github.com/brianmd/dotfiles.git && cd dotfiles && ./prep-user-tools.sh)'
# These are saved to the end because they require user input, and this may be unattended.
vim +PlugInstall
sudo -u $USERNAME vim +PlugInstall
echo "You may need to run 'vim +PlugInstall both as root and as $USERNAME'"
echo "You may also need to run 'gcloud init'"
echo "After which this will install kubernetes: 'curl -sS https://get.k8s.io | bash'"
echo " Note: this works for google cloud"