This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Makefile
executable file
·261 lines (185 loc) · 3.7 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
#!/usr/bin/env make
# Default target specification
run:
########## UTILITY TARGETS ##########
clean:
make/clean
clean-harder: clean
all: images tag
print-version:
@ make/print-version
########## TOOL DOWNLOAD TARGETS ##########
${FISSILE_BINARY}: bin/dev/install_tools.sh bin/common/versions.sh bin/fissile
bin/dev/install_tools.sh
########## VAGRANT VM TARGETS ##########
run:
make/ingress/run
make/uaa/run
make/wait uaa
make/run
make/ingress/update_secrets
run-eirini:
make/ingress/run
make/uaa/run
make/wait uaa
make/run-eirini
make/ingress/update_secrets
run-uaa:
make/ingress/run
make/run-uaa
make/ingress/update_secrets
upgrade:
make/ingress/run
make/uaa/upgrade
make/wait uaa
make/upgrade
make/ingress/update_secrets
upgrade-eirini:
make/ingress/run
make/uaa/upgrade
make/wait uaa
make/upgrade-eirini
make/ingress/update_secrets
upgrade-uaa:
make/ingress/run
make/upgrade-uaa
make/ingress/update_secrets
wait:
make/wait cf
validate:
make/validate
stop:
make/ingress/stop
make/stop
make/uaa/stop
make/wait cf
make/wait uaa
vagrant-box:
make/vagrant-box
docker-deps:
make/docker-deps
vagrant-prep: \
docker-deps \
releases \
compile \
images \
${NULL}
registry:
make/registry
secure-registries:
make/secure-registries
smoke:
make/tests smoke-tests
brain:
make/tests acceptance-tests-brain
cats:
make/tests acceptance-tests
sits:
make/tests sync-integration-tests
stratos-run:
make/stratos/run
make/stratos/metrics/run
stratos-stop:
make/stratos/stop
make/stratos/metrics/stop
istio-run:
make/istio/run
istio-stop:
make/istio/stop
ingress-run:
make/ingress/run
ingress-stop:
make/ingress/stop
ingress-update-secrets:
make/ingress/update_secrets
########## SIDECAR SERVICE TARGETS ##########
mysql:
make/deploy-mysql
########## UAA LINK TARGETS ##########
uaa-releases:
make/uaa/releases
uaa-kube-dist:
make/uaa/kube-dist
uaa-run:
make/uaa/run
uaa-wait:
make/wait uaa
uaa-stop:
make/uaa/stop
uaa-upgrade:
make/uaa/upgrade
uaa-compile: ${FISSILE_BINARY}
make/compile restore
make/uaa/compile
make/compile cache
uaa-images: ${FISSILE_BINARY}
make/uaa/images
uaa-publish: ${FISSILE_BINARY}
make/uaa/publish
uaa-kube: ${FISSILE_BINARY}
make/uaa/kube
.PHONY: uaa-kube
uaa-helm: ${FISSILE_BINARY}
make/uaa/kube helm
.PHONY: uaa-helm
########## BOSH RELEASE TARGETS ##########
scf-release:
make/bosh-release src/scf-release
app-autoscaler-release:
make/bosh-release src/app-autoscaler-release
releases: \
scf-release \
app-autoscaler-release \
uaa-releases \
${NULL}
diff-releases:
make/diff-releases
########## FISSILE BUILD TARGETS ##########
# This is run from the Vagrantfile to copy in the existing compilation cache
copy-compile-cache:
make/compile restore
clean-compile-cache:
make/compile clean
compile: ${FISSILE_BINARY}
make/compile
make/compile restore
make/uaa/compile
make/compile cache
compile-clean: clean ${FISSILE_BINARY} vagrant-prep
${MAKE} tar-sources
tar-sources:
make/tar-sources
osc-commit-sources:
make/osc-commit-sources
images: bosh-images uaa-images helm kube
bosh-images: validate ${FISSILE_BINARY}
make/bosh-images
build: compile images
publish: bosh-publish uaa-publish
bosh-publish: ${FISSILE_BINARY}
make/bosh-publish
show-docker-setup:
make/show-docker-setup
show-versions:
bin/common/versions.sh
make/show-versions
########## KUBERNETES TARGETS ##########
kube: uaa-kube
make/kube
.PHONY: kube
helm: uaa-helm
make/kube helm
.PHONY: helm
########## CONFIGURATION TARGETS ##########
generate: \
kube \
${NULL}
########## DISTRIBUTION TARGETS ##########
dist: \
kube-dist \
${NULL}
kube-dist: kube uaa-kube-dist
make/kube-dist
rm -rf kube
bundle-dist: kube-dist
make/bundle-dist