From 5b140eccbde0b6def2820dfef8130fecf7a34f6f Mon Sep 17 00:00:00 2001 From: "Bryan A. S" <53131727+bryanasdev000@users.noreply.github.com> Date: Thu, 25 Aug 2022 09:18:21 -0300 Subject: [PATCH] fix(README.md): remove duplicate caching section Remove duplicate paragraph at caching/caching layers section. --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index e8d7b529f4..1667f81d50 100644 --- a/README.md +++ b/README.md @@ -480,12 +480,6 @@ cache for the layer. If it exists, kaniko will pull and extract the cached layer instead of executing the command. If not, kaniko will execute the command and then push the newly created layer to the cache. -kaniko can cache layers created by `RUN` (and `COPY`, configured by the -`--cache-copy-layers` flag) commands in a remote repository. Before executing a -command, kaniko checks the cache for the layer. If it exists, kaniko will pull -and extract the cached layer instead of executing the command. If not, kaniko -will execute the command and then push the newly created layer to the cache. - Note that kaniko cannot read layers from the cache after a cache miss: once a layer has not been found in the cache, all subsequent layers are built locally without consulting the cache.