github.com/GoogleContainerTools/skaffold/v2@v2.13.2/integration/testdata/diagnose/multi-config/diagnose.tmpl (about)

     1  apiVersion: skaffold/v4beta11
     2  kind: Config
     3  metadata:
     4    name: cfg2
     5  build:
     6    artifacts:
     7    - image: app2
     8      context: {{.Root}}/foo2
     9      docker:
    10        dockerfile: Dockerfile
    11    tagPolicy:
    12      gitCommit: {}
    13    local:
    14      concurrency: 1
    15  manifests:
    16    rawYaml:
    17    - /k8s/*
    18  deploy:
    19    logs:
    20      prefix: container
    21  ---
    22  apiVersion: skaffold/v4beta11
    23  kind: Config
    24  metadata:
    25    name: cfg3
    26  build:
    27    artifacts:
    28    - image: app3
    29      context: {{.Root}}/foo3
    30      docker:
    31        dockerfile: Dockerfile
    32    tagPolicy:
    33      gitCommit: {}
    34    local:
    35      concurrency: 1
    36  manifests:
    37    rawYaml:
    38    - /k8s/*
    39  deploy:
    40    logs:
    41      prefix: container
    42  ---
    43  apiVersion: skaffold/v4beta11
    44  kind: Config
    45  build:
    46    artifacts:
    47    - image: app1
    48      context: {{.Root}}/foo
    49      docker:
    50        dockerfile: Dockerfile
    51    tagPolicy:
    52      gitCommit: {}
    53    local:
    54      concurrency: 1
    55  manifests:
    56    rawYaml:
    57    - /k8s/*
    58  deploy:
    59    logs:
    60      prefix: container