github.com/windmilleng/tilt@v0.13.6/integration/imagetags/Tiltfile (about)

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