github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/integration/imagetags/Tiltfile (about)

     1  include('../Tiltfile')
     2  
     3  repo = 'gcr.io/windmill-test-containers'
     4  docker_build(repo + '/imagetags-common', 'common')
     5  docker_build(repo + '/imagetags-common:stretch', 'common-stretch')
     6  docker_build(repo + '/imagetags-app', 'app')
     7  docker_build(repo + '/imagetags-app:stretch', 'app-stretch')
     8  
     9  k8s_yaml(['app.yaml', 'app-stretch.yaml'])
    10  k8s_resource('imagetags', new_name='regular', port_forwards='31000:8000')
    11  k8s_resource('imagetags-stretch', new_name='stretch', port_forwards='31001:8000')