Skip to content

Commit

Permalink
chore(ci): add Tiltfile for local controller restarts during debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Marques Johansson <[email protected]>
  • Loading branch information
displague committed Jul 20, 2024
1 parent c0cd317 commit 0945e43
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Tiltfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
allow_k8s_contexts(k8s_context())

templated_yaml = local("find package/crds -name '*.yaml' | xargs cat")

k8s_yaml(templated_yaml)

local_resource(
"crossplane-provider-equinix",
serve_cmd="make run",
deps=[
"apis/",
"go.mod",
"go.sum",
"cmd/",
"config/",
"internal"
],
ignore=[
"build/",
"_output/",
],
)

0 comments on commit 0945e43

Please sign in to comment.