tiltfile - port forward mariadb to host machine
This commit is contained in:
parent
783e0f7ad0
commit
c667d625d8
1 changed files with 5 additions and 1 deletions
6
Tiltfile
6
Tiltfile
|
|
@ -102,7 +102,11 @@ k8s_resource(
|
|||
labels=["OnCallBackend"],
|
||||
)
|
||||
k8s_resource(workload="redis-master", labels=["OnCallDeps"])
|
||||
k8s_resource(workload="mariadb", labels=["OnCallDeps"])
|
||||
k8s_resource(
|
||||
workload="mariadb",
|
||||
port_forwards='3307:3306', # <host_port>:<container_port>
|
||||
labels=["OnCallDeps"],
|
||||
)
|
||||
|
||||
|
||||
# name all tilt resources after the k8s object namespace + name
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue