fix(README.md): remove duplicate caching section (#2223)

Remove duplicate paragraph at caching/caching layers section.
This commit is contained in:
Bryan A. S 2022-08-25 11:51:14 -03:00 committed by GitHub
parent 90e426ba3f
commit ee513538f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -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.