forked from flyteorg/flytesnacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
90 lines (72 loc) · 2.83 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
export REPOSITORY=flytesnacks
.SILENT:
# Flyte sandbox configuration variables
KUBERNETES_API_PORT := 30086
FLYTE_PROXY_PORT := 30081
K8S_DASHBOARD_PROXY_PORT := 30082
MINIO_PROXY_PORT := 30084
FLYTE_SANDBOX_NAME := flyte-sandbox
FLYTE_DIR := ~/.flyte
# Module of cookbook examples to register
EXAMPLES_MODULE ?= core
define LOG
echo "$(shell tput bold)$(shell tput setaf 2)$(1)$(shell tput sgr0)"
endef
define RUN_IN_SANDBOX
docker exec -it \
-e DOCKER_BUILDKIT=1 \
-e MAKEFLAGS \
-e REGISTRY \
-e VERSION \
-w /root \
$(FLYTE_SANDBOX_NAME) \
$(1)
endef
.PHONY: update_boilerplate
update_boilerplate:
@curl https://raw.githubusercontent.com/flyteorg/boilerplate/master/boilerplate/update.sh -o boilerplate/update.sh
@boilerplate/update.sh
.PHONY: help
help: ## Show help message
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[$$()% a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
# Helper to determine if a sandbox is up and running
.PHONY: _requires-sandbox-up
_requires-sandbox-up:
ifeq ($(shell docker ps -f name=$(FLYTE_SANDBOX_NAME) --format={.ID}),)
$(error Cluster has not been started! Use 'make start' to start a cluster)
endif
.PHONY: setup
setup:
$(call LOG,Starting Flyte sandbox)
flytectl sandbox start --source=$(shell pwd)
flytectl config init
.PHONY: start
start: setup fast_register
echo "Flyte is ready! Flyte UI is available at http://localhost:$(FLYTE_PROXY_PORT)/console."
.PHONY: teardown
teardown: _requires-sandbox-up ## Teardown Flyte sandbox
$(call LOG,Tearing down Flyte sandbox)
flytectl sandbox teardown
.PHONY: status
status: _requires-sandbox-up ## Show status of Flyte deployment
kubectl get pods -n flyte
.PHONY: shell
shell: _requires-sandbox-up ## Drop into a development shell
$(call RUN_IN_SANDBOX,bash)
.PHONY: register
register: _requires-sandbox-up ## Register Flyte cookbook workflows
$(call LOG,Registering example workflows in cookbook/$(EXAMPLES_MODULE))
$(call RUN_IN_SANDBOX,make -C cookbook/$(EXAMPLES_MODULE) serialize)
make -C cookbook/$(EXAMPLES_MODULE) register
.PHONY: fast_register
fast_register: _requires-sandbox-up ## Fast register Flyte cookbook workflows
$(call LOG,Fast registering example workflows from latest release of flytesnacks)
$(call RUN_IN_SANDBOX,make -C cookbook/$(EXAMPLES_MODULE) fast_serialize)
make -C cookbook/$(EXAMPLES_MODULE) fast_register
.PHONY: setup-kubectl
kubectl-config:
# In shell/bash, run: `eval $(make kubectl-config)`
# Makefiles run recipes in sub-processes. A sub-process cannot modify the parent process's environment.
# The best I (@EngHabu) can think of at the moment is to output this for the user to eval in the
# parent process.
echo "export KUBECONFIG=$(KUBECONFIG):~/.kube/config:$(FLYTE_DIR)/k3s/k3s.yaml"