forked from validatedpatterns/rag-llm-gitops
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (22 loc) · 701 Bytes
/
Makefile
File metadata and controls
29 lines (22 loc) · 701 Bytes
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
.PHONY: default
default: help
.PHONY: help
##@ Pattern tasks
# No need to add a comment here as help is described in common/
help:
@make -f common/Makefile MAKEFILE_LIST="Makefile common/Makefile" help
%:
make -f common/Makefile $*
.PHONY: install
install: operator-deploy post-install ## installs the pattern and loads the secrets
@echo "Installed"
.PHONY: create-gpu-machineset
create-gpu-machineset: ## Creates a gpu machineset
ansible-playbook ansible/playbooks/create-gpu-machine-set.yaml
.PHONY: post-install
post-install: ## Post-install tasks
make load-secrets
@echo "Done"
.PHONY: test
test:
@make -f common/Makefile PATTERN_OPTS="-f values-global.yaml -f values-hub.yaml" test