Skip to content

Commit

Permalink
Tiltfile: Add new internal/ folder to list of Docker dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
metalmatze committed Feb 23, 2022
1 parent 9fbcc6b commit 65afdb4
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Tiltfile
Expand Up @@ -5,7 +5,17 @@ docker_prune_settings(num_builds=5)
docker_build(
'parca.io/parca/parca-agent:dev', '',
dockerfile='Dockerfile.dev',
only=['./cmd', './pkg', './3rdparty', './go.mod', './go.sum', './parca-agent.bpf.c', './vmlinux.h', './Makefile'],
only=[
'./3rdparty',
'./Makefile',
'./cmd',
'./go.mod',
'./go.sum',
'./internal',
'./parca-agent.bpf.c',
'./pkg',
'./vmlinux.h',
],
)
k8s_yaml('deploy/tilt/parca-agent-daemonSet.yaml')
k8s_resource('parca-agent', port_forwards=[7071])

0 comments on commit 65afdb4

Please sign in to comment.