-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yaml
More file actions
51 lines (44 loc) · 1.09 KB
/
Taskfile.yaml
File metadata and controls
51 lines (44 loc) · 1.09 KB
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
version: "3"
tasks:
default:
aliases:
- list
desc: List all tasks
cmd: task -l
buildMCPServerPlugin:
desc: Build mcp-server-plugin image
dir: services/mcp-server-plugin
cmds:
- docker build -t mcp-server-plugin:latest .
buildMCPGatewayImage:
desc: Build mcp-gateway image
dir: services/mcp-gateway
cmds:
- docker build -t mcp-gateway:latest .
buildMCPToolGeneratorImage:
desc: Build mcp-tool-generator image
dir: services/mcp-tool-generator
cmds:
- docker build -t mcp-tool-generator:latest .
buildRestexecImage:
desc: Build restexec image
dir: services/restexec
cmds:
- docker build -t restexec:latest .
build:
desc: Build all images
cmds:
- task: buildMCPServerPlugin
- task: buildMCPGatewayImage
- task: buildMCPToolGeneratorImage
- task: buildRestexecImage
deploy:
desc: Deploy to Kubernetes
dir: k8s
cmds:
- kubectl apply -f manifest.yaml
undeploy:
desc: Undeploy from Kubernetes
dir: k8s
cmds:
- kubectl delete -f manifest.yaml