Skip to content

Commit 1b6dca7

Browse files
authored
Merge pull request #1469 from dgageot/builders-doc-fixes
More fixes to the builders doc
2 parents 2f99903 + 1da1c0e commit 1b6dca7

File tree

1 file changed

+4
-3
lines changed
  • docs/content/en/docs/how-tos/builders

1 file changed

+4
-3
lines changed

docs/content/en/docs/how-tos/builders/_index.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ of `skaffold.yaml`. The `local` type offers the following options:
4343

4444
|Option|Description|
4545
|-----|-----|
46-
|`skipPush`| OPTIONAL. Skips pushing images. Default value is `false`. |
46+
|`push`| OPTIONAL. Should images be pushed to a registry. Default value is `false` for local clusters, `true` for remote clusters. |
4747
|`useDockerCLI`| OPTIONAL. Uses Docker command-line interface instead of Docker Engine APIs. Default value is `false`. |
4848
|`useBuildkit`| OPTIONAL Uses BuildKit to build Docker images. Default value is `false`. |
4949

@@ -56,7 +56,7 @@ build:
5656
- image: gcr.io/k8s-skaffold/example
5757
# Use local Docker daemon to build artifacts
5858
local:
59-
skipPush: false
59+
push: true
6060
useDockerCLI: false
6161
useBuildkit: false
6262
# The build section above is equal to
@@ -131,7 +131,8 @@ build:
131131
- image: gcr.io/k8s-skaffold/example
132132
# Use Kaniko to build artifacts
133133
kaniko:
134-
buildContext: gs://YOUR-BUCKET/SOURCE-CODE.tar.gz
134+
buildContext:
135+
gcsBucket: YOUR-BUCKET
135136
```
136137

137138
## Jib Maven and Gradle locally

0 commit comments

Comments
 (0)