github.com/GoogleContainerTools/skaffold/v2@v2.13.2/integration/testdata/debug/skaffold.yaml (about) 1 apiVersion: skaffold/v4beta11 2 kind: Config 3 build: 4 artifacts: 5 - image: skaffold-debug-java 6 context: java 7 jib: 8 args: 9 - --no-transfer-progress 10 - image: skaffold-debug-npm 11 context: npm 12 - image: skaffold-debug-nodejs 13 context: nodejs 14 #- image: skaffold-debug-python3 15 # context: python3 16 - image: skaffold-debug-go 17 context: go 18 #- image: skaffold-debug-netcore 19 # context: netcore 20 manifests: 21 rawYaml: 22 - java/k8s/web.yaml 23 - nodejs/k8s/pod.yaml 24 - npm/k8s/pod.yaml 25 #- python3/k8s/pod.yaml 26 - go/k8s/pod.yaml 27 #- netcore/k8s/pod.yaml 28 29 profiles: 30 - name: kustomize 31 patches: 32 - op: remove 33 path: /manifests/rawYaml 34 manifests: 35 kustomize: 36 paths: 37 - "." 38 # use GCP Buildpacks to build the individual projects 39 - name: buildpacks 40 build: 41 artifacts: 42 - image: skaffold-debug-java 43 context: java 44 buildpacks: {} 45 - image: skaffold-debug-npm 46 context: npm 47 buildpacks: {} 48 - image: skaffold-debug-nodejs 49 context: nodejs 50 buildpacks: {} 51 #- image: skaffold-debug-python3 52 # context: python3 53 # buildpacks: 54 # builder: "gcr.io/buildpacks/builder:v1" 55 - image: skaffold-debug-go 56 context: go 57 buildpacks: 58 env: 59 - GOOGLE_RUNTIME_VERSION=1.16 # temporarily pin due to issue#6450 60 #- image: skaffold-debug-netcore 61 # context: netcore 62 # buildpacks: 63 # builder: "gcr.io/buildpacks/builder:v1" 64 - name: docker 65 patches: 66 - op: remove 67 path: /manifests/rawYaml 68 build: 69 artifacts: 70 - image: skaffold-debug-nodejs 71 context: nodejs 72 deploy: 73 docker: 74 images: [skaffold-debug-nodejs] 75 76 - name: specified-runtime 77 build: 78 artifacts: 79 - image: specified-runtime-nodejs 80 context: specified-runtime 81 runtimeType: nodejs 82 manifests: 83 rawYaml: 84 - specified-runtime/k8s/*