github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v2/content/en/docs/builders/build-environments/in-cluster.md (about)

     1  ---
     2  title: "In cluster build"
     3  linkTitle: "In cluster"
     4  weight: 20
     5  ---
     6  
     7  Skaffold supports building in cluster via [Kaniko]({{< relref "/docs/builders/builder-types/docker#dockerfile-in-cluster-with-kaniko" >}}) 
     8  or [Custom Build Script]({{<relref "/docs/builders/builder-types/custom#custom-build-script-in-cluster" >}}).
     9  
    10  ## Configuration
    11  
    12  To configure in-cluster Build, add build type `cluster` to the build section of `skaffold.yaml`. 
    13  
    14  ```yaml
    15  build:
    16    cluster: {}
    17  ```
    18  
    19  The following options can optionally be configured:
    20  
    21  {{< schema root="ClusterDetails" >}}
    22  
    23  ## Faster builds
    24  
    25  Skaffold can build multiple artifacts in parallel, by settings a value higher than `1` to `concurrency`.
    26  For in-cluster builds, the default is to build all the artifacts in parallel. If your cluster is too
    27  small, you might want to reduce the `concurrency`. Setting `concurrency` to `1` will cause artifacts to be built sequentially.
    28  
    29  {{<alert title="Note">}}
    30  When artifacts are built in parallel, the build logs are still printed in sequence to make them easier to read.
    31  {{</alert>}}