Skip to content

Commit

Permalink
add a basic tiltfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tchinmai7 committed Jun 8, 2024
1 parent f8b1cff commit f11c113
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-linode",
serve_cmd="make run",
deps=[
"apis/",
"go.mod",
"go.sum",
"cmd/",
"config/",
"internal"
],
ignore=[
"build/",
"_output/",
],
)

0 comments on commit f11c113

Please sign in to comment.