├── .circleci ├── Dockerfile ├── README.md ├── config.yml ├── portforward.sh ├── start-portforward-service.sh └── with-kind-cluster.sh ├── LICENSE ├── README.md ├── kind-with-registry.sh ├── teardown-kind-with-registry.sh └── test ├── pod.yaml └── test.sh /.circleci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/.circleci/Dockerfile -------------------------------------------------------------------------------- /.circleci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/.circleci/README.md -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/portforward.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/.circleci/portforward.sh -------------------------------------------------------------------------------- /.circleci/start-portforward-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/.circleci/start-portforward-service.sh -------------------------------------------------------------------------------- /.circleci/with-kind-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/.circleci/with-kind-cluster.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/README.md -------------------------------------------------------------------------------- /kind-with-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/kind-with-registry.sh -------------------------------------------------------------------------------- /teardown-kind-with-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/teardown-kind-with-registry.sh -------------------------------------------------------------------------------- /test/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/test/pod.yaml -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/kind-local/HEAD/test/test.sh --------------------------------------------------------------------------------