We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4831e51 commit 303cd46Copy full SHA for 303cd46
.dockerignore
@@ -0,0 +1 @@
1
+target
Makefile
@@ -17,7 +17,7 @@ compile:
17
-v cargo-cache:/root/.cargo \
18
-v $$PWD:/volume \
19
-w /volume \
20
- -it clux/muslrust:stable \
+ -t clux/muslrust:stable \
21
cargo build --release
22
sudo chown $$USER:$$USER -R target
23
mv target/x86_64-unknown-linux-musl/release/controller .
Tiltfile
@@ -0,0 +1,4 @@
+local_resource('compile', 'make compile')
2
+docker_build('clux/controller', '.', dockerfile='Dockerfile')
3
+k8s_yaml('yaml/deployment.yaml')
4
+k8s_resource('foo-controller', port_forwards=8080)
0 commit comments