kaniko
kaniko copied to clipboard
Build Container Images In Kubernetes
Bumps [github.com/docker/docker](https://github.com/docker/docker) from 28.1.1+incompatible to 28.2.2+incompatible. Release notes Sourced from github.com/docker/docker's releases. 28.2.2 For a full list of pull requests and changes in this release, refer to the relevant GitHub...
**Description** So far `ADD` instructions were not cacheable, only `COPY` instructions. This is not really a blocker as most operations can and should be done with COPY instead, but nevertheless...
**Actual behavior** A clear and concise description of what the bug is. I get an error ``` INFO[0000] Building stage 'localhost:5000/intermediate:4' [idx: '0', base-idx: '-1'] INFO[0000] Unpacking rootfs as cmd...
I used Kaniko in cloud environment and the root execution environment / only supports 10GB. The base image of dockerfile is almost 30GB. When image building, Kaniko will unpacking rootfs,...
**Description** Currently the output of kaniko differs whether we have build from scratch or from cache. When we build from scratch we omit empty layers created by pointless RUN statements....
**Actual behavior** Try to build example and fail "kaniko should only be run inside of a container, run with the --force flag if you are sure you want to continue"...
**Description** The current integration tests fall short when it comes to verifying caching. They only check whether we can rebuild from cache and that the resulting files are identical. They...
Bumps [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry) from 0.20.4 to 0.20.5. Release notes Sourced from github.com/google/go-containerregistry's releases. v0.20.5 What's Changed build(deps): bump docker/docker to v28.0.0+incompatible by @luhring in google/go-containerregistry#2071 Migrate linter to v2 by @Subserial...
**Actual behavior** Using Kaniko in my gitlab-ci.yml file to build and push images on new tags - ``` deploy-docker: stage: deploy rules: - if: $CI_COMMIT_TAG image: name: gcr.io/kaniko-project/executor:v1.23.2-debug entrypoint: [""]...
Labelling intermediate images can cause unecessary cache misses. **Description** Let's assume a label like so: ``` --label commit=${CI_COMMIT_SHA} ``` This will cause the **intermediate** image to be labelled with the...