Skip to content

Commit 9a83794

Browse files
committed
fix: fixed comment about compressed caching
1 parent c6b8811 commit 9a83794

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs-v2/content/en/schemas/v4beta13.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3007,8 +3007,8 @@
30073007
},
30083008
"compressedCaching": {
30093009
"type": "boolean",
3010-
"description": "increases the runtime of the build, but decreases the memory usage especially for large builds (default=true).",
3011-
"x-intellij-html-description": "increases the runtime of the build, but decreases the memory usage especially for large builds (default=true)."
3010+
"description": "increases memory usage but reduces build runtime (default=true).",
3011+
"x-intellij-html-description": "increases memory usage but reduces build runtime (default=true)."
30123012
},
30133013
"hostPath": {
30143014
"type": "string",

pkg/skaffold/schema/latest/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ type KanikoCache struct {
501501
CacheCopyLayers bool `yaml:"cacheCopyLayers,omitempty"`
502502
// CacheRunLayers enables caching of run layers (default=true).
503503
CacheRunLayers *bool `yaml:"cacheRunLayers,omitempty"`
504-
// CompressedCaching increases the runtime of the build, but decreases the memory usage especially for large builds (default=true).
504+
// CompressedCaching increases memory usage but reduces build runtime (default=true).
505505
CompressedCaching *bool `yaml:"compressedCaching,omitempty"`
506506
}
507507

0 commit comments

Comments
 (0)