Skip to content

Commit 92c0ba0

Browse files
authored
install cilium-helm addon using tilt (#112)
Co-authored-by: Rahul Sharma <[email protected]>
1 parent 8b97d86 commit 92c0ba0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: Tiltfile

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("ext://k8s_attach", "k8s_attach")
2+
13
docker_build("controller", ".", only=("Dockerfile", "Makefile", "vendor","go.mod", "go.sum", "./api", "./cloud","./cmd", "./controller", "./util"))
24

35
local_resource(
@@ -27,3 +29,14 @@ k8s_resource(
2729
"%s:secret" % token_secret_name
2830
]
2931
)
32+
33+
k8s_attach("caaph-controller-manager", "deployment.apps/caaph-controller-manager", namespace="caaph-system")
34+
35+
k8s_yaml("./templates/addons/cilium-helm.yaml")
36+
k8s_resource(
37+
new_name="addon-cilium-helm",
38+
objects=[
39+
"cilium:helmchartproxy"
40+
],
41+
resource_deps=["capi-controller-manager", "cluster-api-provider-linode-controller-manager", "caaph-controller-manager"]
42+
)

0 commit comments

Comments
 (0)