andrew2758

Results 5 comments of andrew2758

Here are the `env` lines that match 'example.com': ``` CI_DEPENDENCY_PROXY_SERVER=example.com:443 CI_SERVER_HOST=example.com CI_SERVER_URL=https://example.com CI_COMPONENT_FQDN=example.com CI_REGISTRY_IMAGE=registry-example.com:443/me/registry-test CI_PIPELINE_URL=https://example.com/me/registry-test/-/pipelines/3612 CI_SERVER_FQDN=example.com CI_REPOSITORY_URL=https://gitlab-ci-token:[MASKED]@example.com/me/registry-test.git CI_API_GRAPHQL_URL=https://example.com/api/graphql CI_REGISTRY=registry-example.com:443 CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX=example.com:443/me/dependency_proxy/containers CI_API_V4_URL=https://example.com/api/v4 CI_SERVER_SHELL_SSH_HOST=example.com CI_JOB_URL=https://example.com/me/registry-test/-/jobs/7576 CI_PROJECT_URL=https://example.com/me/registry-test CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX=example.com:443/me/dependency_proxy/containers ```

I'm trying to compile a modified version of Kaniko for debugging purposes: ``` DOCKER_BUILDKIT=1 docker image build . -f deploy/Dockerfile --tag=kaniko ``` How can I build a `-debug` version /...

> I'm trying to compile a modified version of Kaniko for debugging purposes: > > ``` > DOCKER_BUILDKIT=1 docker image build . -f deploy/Dockerfile --tag=kaniko > ``` > > How...

I added and used the following debug patch to Kaniko: ``` diff --git a/pkg/executor/push.go b/pkg/executor/push.go index c95aecc3..393d345d 100644 --- a/pkg/executor/push.go +++ b/pkg/executor/push.go @@ -91,6 +91,7 @@ var ( // push...

I found a workaround for this issue: explicitly enter the registry URL so it's possible to leave off the port number `:443`. ``` # working: --destination "registry-example.com/me/registry-test/my-container:${CI_COMMIT_TAG}" # not working:...