kaniko icon indicating copy to clipboard operation
kaniko copied to clipboard

Build Container Images In Kubernetes

Results 466 kaniko issues
Sort by recently updated
recently updated
newest added

**Actual behavior** Trying to use `kaniko` with the `registry mirror` or `registry-map` flag, which includes a custom path for pulling images from DockerHub does not work. For example, I used...

**Actual behavior** gcr.io/kaniko-project/executor:v1.15.0-debug is able to produce layers compressed with zstd gcr.io/kaniko-project/executor:v1.22.0-debug throws an error: error building image: error building stage: failed to save snapshot to image: gzip: invalid compression...

kind/bug
priority/p1
area/cli
regression
regression/v1.16.0

> Thanks for the workaround info, but it would preferable if Kaniko supported the [same `--secret` flags as Buildx](https://docs.docker.com/engine/reference/commandline/buildx_build/#secret) so that we could use the same Dockerfile in both CI...

kind/enhancement
kind/feature-request
priority/p1

**Actual behavior** A change in a `--label` value, causes cache invalidation for stages after the first one. **Expected behavior** Caches are used as expected for a RUN command all stages,...

kind/bug
area/caching
priority/p1
works-with-docker

Hello. I have docker image myproject/myimage that build and pushed to hub.docker.com Dockerfile: FROM adoptopenjdk:11-jre-hotspot LABEL version=1.0.0 ENTRYPOINT ["/opt/app/entrypoint.sh"] ADD entrypoint.sh /opt/app/entrypoint.sh RUN chmod 750 /opt/app/entrypoint.sh ADD build/app.jar /opt/app/ When...

kind/bug
help wanted
good first issue
priority/p1
area/behavior
priority/p2
area/cli
feat/tagging

**Actual behavior** Creating a custom kaniko image on k8s using the following Dockerfile when execute "Unpacking rootfs as cmd COPY" takes too long: Dockerfile: ``` FROM python:3.8 WORKDIR /app COPY...

area/performance
priority/p2
differs-from-docker

**Actual behavior** When `--kaniko-dir` (or `KANIKO_DIR`) is set to a non standard location, this code: https://github.com/GoogleContainerTools/kaniko/blob/main/cmd/executor/cmd/root.go#L312 overwrites the DOCKER_CONFIG environment variable to point to a different and unintended location. **Expected...

kind/bug
work-around-available
priority/p2
area/cli
area/env-variable

I tried to run below command to get OCI tar file in format/manifest in **application/vnd.oci.image.manifest.v1+json** but got generated **application/vnd.docker.distribution.manifest.v2+json** As per OCI spec - https://github.com/opencontainers/image-spec/blob/master/manifest.md , we expect to get...

kind/bug
priority/p1
area/behavior
area/usability
priority/p2
possible-dupe
feat/oci

**Description** We are building a system that helps us build docker images inside k8s. We are using kaniko for this purpose. This system is highly interactive as we aim to...

Fixes 1697 **Description** This attempts to mitigate some of the sources for issues described in https://github.com/GoogleContainerTools/kaniko/issues/1697 The potential problems that this might address is when something is writing to the...