forked from alexandrevilain/temporal-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTiltfile
More file actions
33 lines (26 loc) · 627 Bytes
/
Tiltfile
File metadata and controls
33 lines (26 loc) · 627 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
30
31
32
33
# -*- mode: Python -*-
load("ext://cert_manager", "deploy_cert_manager")
def build_image():
docker_build(
"localhost:5001/temporal-operator",
".",
ignore=[
".git",
".github",
"bundle",
"docs",
"examples",
"hack",
"out",
"tests",
"*.md",
"LICENSE",
"PROJECT",
],
build_args={"GOPROXY": os.getenv("GOPROXY", default="")},
)
def deploy():
k8s_yaml(kustomize("./config/local"))
build_image()
deploy_cert_manager(version="v1.10.1")
deploy()