forked from HariSekhon/DevOps-Bash-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
382 lines (302 loc) · 10.8 KB
/
Makefile
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
#
# Author: Hari Sekhon
# Date: 2016-01-17 12:56:53 +0000 (Sun, 17 Jan 2016)
#
# vim:ts=4:sts=4:sw=4:noet
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
#
# https://www.linkedin.com/in/HariSekhon
#
include Makefile.in
REPO := HariSekhon/DevOps-Bash-tools
CONF_FILES := $(shell sed "s/\#.*//; /^[[:space:]]*$$/d" setup/files.txt)
#CODE_FILES := $(shell find . -type f -name '*.sh' -o -type f -name '.bash*' | sort)
#CODE_FILES := $(shell git ls-files | grep -E -e '\.sh$$' -e '\.bash[^/]*$$' -e '\.groovy$$' | sort)
CODE_FILES := $(shell \
if type git >/dev/null 2>&1; then \
git ls-files | \
grep -E -e '\.sh$$' -e '\.bash[^/]*$$' -e '\.groovy$$' | \
sort | \
while read -r filepath; do \
test -f "$$filepath" || continue; \
test -d "$$filepath" && continue; \
test -L "$$filepath" && continue; \
echo "$$filepath"; \
done; \
else \
find . -type f; \
fi \
)
BASH_PROFILE_FILES := $(shell echo .bashrc .bash_profile .bash.d/*.sh)
#.PHONY: *
define MAKEFILE_USAGE
Repo specific options:
make install builds all script dependencies, installs AWS CLI, GitHub CLI, symlinks all config files to $$HOME and adds sourcing of bash profile
make link symlinks all config files to $$HOME and adds sourcing of bash profile
make unlink removes all symlinks pointing to this repo's config files and removes the sourcing lines from .bashrc and .bash_profile
make python-desktop installs all Python Pip packages for desktop workstation listed in setup/pip-packages-desktop.txt
make perl-desktop installs all Perl CPAN packages for desktop workstation listed in setup/cpan-packages-desktop.txt
make ruby-desktop installs all Ruby Gem packages for desktop workstation listed in setup/gem-packages-desktop.txt
make golang-desktop installs all Golang packages for desktop workstation listed in setup/go-packages-desktop.txt
make nodejs-desktop installs all NodeJS packages for desktop workstation listed in setup/npm-packages-desktop.txt
make desktop installs all of the above + many desktop OS packages listed in setup/
make mac-desktop all of the above + installs a bunch of major common workstation software packages like Ansible, Terraform, MiniKube, MiniShift, SDKman, Travis CI, CCMenu, Parquet tools etc.
make linux-desktop
make ls-scripts print list of scripts in this project, ignoring code libraries in lib/ and .bash.d/
make github-cli installs GitHub CLI
make kubernetes installs Kubernetes kubectl and kustomize to ~/bin/
make terraform installs Terraform to ~/bin/
make vim installs Vundle and plugins
make tmux installs TMUX TPM and plugin for kubernetes context
make ccmenu installs and (re)configures CCMenu to watch this and all other major HariSekhon GitHub repos
make status open the Github Status page of all my repos build statuses across all CI platforms
make aws installs AWS CLI tools
make azure installs Azure CLI
make gcp installs Google Cloud SDK
make aws-shell sets up AWS Cloud Shell: installs core packages and links configs
(maintains itself across future Cloud Shells via .aws_customize_environment hook)
make gcp-shell sets up GCP Cloud Shell: installs core packages and links configs
(maintains itself across future Cloud Shells via .customize_environment hook)
make azure-shell sets up Azure Cloud Shell (limited compared to gcp-shell, doesn't install OS packages since there is no sudo)
endef
# not including azure here because it requires interactive prompt and hangs automatic testing of make docker-*
.PHONY: build
build:
@echo ================
@echo Bash Tools Build
@echo ================
@$(MAKE) git-summary
@$(MAKE) init
@$(MAKE) system-packages
@$(MAKE) aws github-cli
.PHONY: init
init: git
@echo "running init:"
git submodule update --init --recursive
@echo
.PHONY: install
install: build
@$(MAKE) link
@$(MAKE) aws
@$(MAKE) gcp
@$(MAKE) github-cli
@$(MAKE) pip
.PHONY: uninstall
uninstall: unlink
@echo "Not removing any system packages for safety"
.PHONY: bash
bash: link
@:
.PHONY: link
link:
@setup/shell_link.sh
.PHONY: unlink
unlink:
@setup/shell_unlink.sh
.PHONY: mac-desktop
mac-desktop: desktop
@setup/mac_desktop.sh
.PHONY: mac
mac: mac-desktop
@:
.PHONY: linux-desktop
linux-desktop: desktop
@setup/linux_desktop.sh
.PHONY: linux
linux: linux-desktop
@:
.PHONY:
ccmenu:
@setup/ccmenu_setup.sh
.PHONY: desktop
desktop: install
@if [ -x /sbin/apk ]; then $(MAKE) apk-packages-desktop; fi
@if [ -x /usr/bin/apt-get ]; then $(MAKE) apt-packages-desktop; fi
@if [ -x /usr/bin/yum ]; then $(MAKE) yum-packages-desktop; fi
@if [ `uname` = Darwin ]; then \
if type brew >/dev/null 2>/dev/null; then \
$(MAKE) homebrew-packages-desktop; \
fi; \
fi
@# do these late so that we have the above system packages installed first to take priority and not install from source where we don't need to
@$(MAKE) perl-desktop
@$(MAKE) golang-desktop
@$(MAKE) nodejs-desktop
@$(MAKE) ruby-desktop
@# no packages any more since jgrep is no longer found
@#$(MAKE) ruby-desktop
.PHONY: apk-packages-desktop
apk-packages-desktop: system-packages
@echo "Alpine desktop not supported at this time"
@exit 1
.PHONY: apt-packages-desktop
apt-packages-desktop: system-packages
NO_FAIL=1 NO_UPDATE=1 $(BASH_TOOLS)/packages/apt_install_packages.sh setup/deb-packages-desktop.txt
.PHONY: yum-packages-desktop
yum-packages-desktop: system-packages
NO_FAIL=1 NO_UPDATE=1 $(BASH_TOOLS)/packages/yum_install_packages.sh setup/rpm-packages-desktop.txt
.PHONY: homebrew-packages-desktop
homebrew-packages-desktop: system-packages homebrew
@:
.PHONY: brew-packages-desktop
brew-packages-desktop: homebrew-packages-desktop
@:
.PHONY: homebrew
homebrew: system-packages brew
@:
.PHONY: brew
brew:
which -a brew || install/install_homebrew.sh
which -a wget || brew install wget
NO_FAIL=1 NO_UPDATE=1 $(BASH_TOOLS)/packages/brew_install_packages_if_absent.sh setup/brew-packages-desktop.txt
NO_FAIL=1 NO_UPDATE=1 CASK=1 $(BASH_TOOLS)/packages/brew_install_packages_if_absent.sh setup/brew-packages-desktop-casks.txt
@# doesn't pass the packages correctly yet
@#NO_FAIL=1 NO_UPDATE=1 TAP=1 $(BASH_TOOLS)/packages/brew_install_packages.sh setup/brew-packages-desktop-taps.txt
NO_FAIL=1 NO_UPDATE=1 TAP=1 $(BASH_TOOLS)/packages/brew_install_packages.sh setup/brew-packages-desktop-taps.txt
.PHONY: perl-desktop
perl-desktop: system-packages cpan-desktop
@:
.PHONY: cpan-desktop
cpan-desktop: cpan
NO_FAIL=1 NO_UPDATE=1 $(BASH_TOOLS)/perl/perl_cpanm_install_if_absent.sh setup/cpan-packages-desktop.txt
.PHONY: golang-desktop
golang-desktop: system-packages go-desktop
@:
.PHONY: go-desktop
go-desktop: system-packages go
@:
.PHONY: go
go:
NO_FAIL=1 $(BASH_TOOLS)/packages/golang_install_if_absent.sh setup/go-packages-desktop.txt
.PHONY: ruby-desktop
ruby-desktop: system-packages gem-desktop
@:
.PHONY: gem-desktop
gem-desktop: gem
NO_FAIL=1 $(BASH_TOOLS)/packages/ruby_gem_install_if_absent.sh setup/gem-packages-desktop.txt
.PHONY: python-desktop
python-desktop: system-packages pip-desktop
.PHONY: pip
pip-desktop: pip
PIP=$(PIP) ./python/python_pip_install_if_absent.sh setup/pip-packages-desktop.txt
if uname -s | grep -q Darwin; then \
PIP=$(PIP) ./python/python_pip_install_if_absent.sh setup/pip-packages-mac.txt; \
fi
.PHONY: nodejs-desktop
nodejs-desktop: system-packages npm-desktop
.PHONY: npm-desktop
npm-desktop: npm
$(BASH_TOOLS)/packages/nodejs_npm_install_if_absent.sh $(BASH_TOOLS)/setup/npm-packages-desktop.txt
.PHONY: aws
aws: system-packages python-version
@if ! command -v aws; then install/install_aws_cli.sh; fi
# @$(MAKE) codecommit
#
#.PHONY: codecommit
#codecommit:
@# needed for github_mirror_repos_to_aws_codecommit.sh and dependent GitHub Actions workflows
@if uname -s | grep -q Darwin; then \
xargs(){ \
gxargs "$$@"; \
}; \
fi; \
grep '^git-remote-codecommit' requirements.txt | \
PIP=$(PIP) xargs --no-run-if-empty ./python/python_pip_install_if_absent.sh || :
.PHONY: aws-shell
aws-shell:
@if [ "${AWS_EXECUTION_ENV:-}" != "CloudShell" ]; then echo "Not running inside AWS Cloud Shell"; exit 1; fi
@$(MAKE) system-packages aws link
.PHONY: azure
azure: system-packages
@install/install_azure_cli.sh
.PHONY: azure-shell
azure-shell: link
:
.PHONY: gcp
gcp: system-packages
@./install/install_gcloud_sdk.sh
@./install/install_cloud_sql_proxy.sh
.PHONY: gcp-shell
gcp-shell:
@if [ -z "${DEVSHELL_PROJECT_ID:-}" ]; then echo "Not running inside Google Cloud Shell"; exit 1; fi
@$(MAKE) system-packages link
.PHONY: github-cli
github-cli: ~/bin/gh
@:
~/bin/gh:
install/install_github_cli.sh
.PHONY:
digital-ocean: ~/bin/doctl
@:
~/bin/doctl:
install/install_doctl.sh
.PHONY: kubernetes
kubernetes: kubectl kustomize
@:
.PHONY: k8s
k8s: kubernetes
@:
.PHONY: kubectl
kubectl: ~/bin/kubectl
@:
~/bin/kubectl:
install/install_kubectl.sh
.PHONY: kustomize
kustomize: ~/bin/kustomize
@:
~/bin/kustomize:
install/install_kustomize.sh
.PHONY: vim
vim: ~/.vim/bundle/Vundle.vim
@:
~/.vim/bundle/Vundle.vim:
install/install_vundle.sh
.PHONY: tmux
tmux: ~/.tmux/plugins/tpm ~/.tmux/plugins/kube.tmux
@:
~/.tmux/plugins/tpm:
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
~/.tmux/plugins/kube.tmux:
wget -O ~/.tmux/plugins/kube.tmux https://raw.githubusercontent.com/jonmosco/kube-tmux/master/kube.tmux
.PHONY: test
test:
./checks/check_all.sh
.PHONY: clean
clean:
@rm -fv -- setup/terraform.zip
.PHONY: ls-scripts
ls-scripts:
@$(MAKE) ls | grep -v -e 'lib/' -e '\.bash'
.PHONY: ls-scripts2
ls-scripts2:
@$(MAKE) ls | grep -v -e 'lib/' -e '\.bash' -e 'setup/'
.PHONY: wcbashrc
wcbashrc:
@wc $(BASH_PROFILE_FILES)
@printf "Total Bash Profile files: "
@ls $(BASH_PROFILE_FILES) | wc -l
.PHONY: wcbash
wcbash: wcbashrc
@:
.PHONY: wcbashrc2
wcbashrc2:
@printf "Total Bash Profile files: "
@ls $(BASH_PROFILE_FILES) | wc -l
@printf "Total line count without # comments: "
@ls $(BASH_PROFILE_FILES) | xargs sed 's/#.*//;/^[[:space:]]*$$/d' | wc -l
.PHONY: wcbash2
wcbash2: wcbashrc2
@:
.PHONY: pipreqs-mapping
pipreqs-mapping:
#wget -O resources/pipreqs_mapping.txt https://raw.githubusercontent.com/HariSekhon/pipreqs/mysql-python/pipreqs/mapping
wget -O resources/pipreqs_mapping.txt https://raw.githubusercontent.com/bndr/pipreqs/master/pipreqs/mapping
.PHONY: pip-mapping
pip-mapping: pipreqs-mapping
@:
.PHONY: status-page
status-page:
./cicd/generate_status_page.sh; . .bash.d/git.sh; gitu STATUS.md