github.com/GoogleContainerTools/skaffold@v1.39.18/examples/custom-tests/skaffold.yaml (about) 1 apiVersion: skaffold/v2beta28 2 kind: Config 3 build: 4 artifacts: 5 - image: custom-test-example 6 test: 7 - image: custom-test-example 8 custom: 9 - command: ./test.sh 10 timeoutSeconds: 60 11 dependencies: 12 paths: 13 - "*_test.go" 14 - "test.sh" 15 - command: echo Hello world!! 16 dependencies: 17 command: echo [\"main_test.go\"] 18 deploy: 19 kubectl: 20 manifests: 21 - k8s-*