File tree 1 file changed +4
-3
lines changed
docs/content/en/docs/how-tos/builders
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ of `skaffold.yaml`. The `local` type offers the following options:
43
43
44
44
| Option| Description|
45
45
| -----| -----|
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 . |
47
47
| ` useDockerCLI ` | OPTIONAL. Uses Docker command-line interface instead of Docker Engine APIs. Default value is ` false ` . |
48
48
| ` useBuildkit ` | OPTIONAL Uses BuildKit to build Docker images. Default value is ` false ` . |
49
49
56
56
- image : gcr.io/k8s-skaffold/example
57
57
# Use local Docker daemon to build artifacts
58
58
local :
59
- skipPush : false
59
+ push : true
60
60
useDockerCLI : false
61
61
useBuildkit : false
62
62
# The build section above is equal to
@@ -131,7 +131,8 @@ build:
131
131
- image: gcr.io/k8s-skaffold/example
132
132
# Use Kaniko to build artifacts
133
133
kaniko:
134
- buildContext: gs://YOUR-BUCKET/SOURCE-CODE.tar.gz
134
+ buildContext:
135
+ gcsBucket: YOUR-BUCKET
135
136
` ` `
136
137
137
138
# # Jib Maven and Gradle locally
You can’t perform that action at this time.
0 commit comments