Unnecessary `docker pull` being triggered
See original GitHub issueI have a workflow that’s deploying some manifests which don’t contain any images and yet the workflow is still triggering a docker pull
which fails with the following error:
Deploying manifests
Warning: Deployment strategy is not recognized.
/usr/local/bin/kubectl apply -f /tmp/kafka.yml,/tmp/monitoring.yml --insecure-skip-tls-verify --namespace metrics
prometheusrule.monitoring.coreos.com/staging.kafka-to-bq-lag created
prometheusrule.monitoring.coreos.com/data-science-monitoring.rules created
Checking manifest stability
Printing ingresses
Annotating resources
/usr/bin/docker pull
invalid reference format
Warning: Failed to get dockerfile path for image : Error: The process '/usr/bin/docker' failed with exit code 1
Issue Analytics
- State:
- Created a year ago
- Comments:9
Top Results From Across the Web
Set up Automated Builds - Docker Documentation
When Docker Hub pulls a branch from a source code repository, it performs a shallow clone (only the tip of the specified branch)....
Read more >10 Docker Security Best Practices - Snyk
Docker defaults allow pulling Docker images without validating their authenticity, thus potentially exposing you to arbitrary Docker images ...
Read more >Troubleshooting errors with Docker commands when using ...
Check that your local disk has enough remaining free space to store the Docker image you are pulling. You can also delete old...
Read more >Pushing and pulling images | Container Registry documentation
This document focuses on pushing and pulling images with Docker. ... The first image push to a hostname triggers creation of the registry...
Read more >Triggering Docker pipelines with Jenkins - CloudBees
Docker Hub allows images to be shared and pulled for use as containers or as dependencies for other Docker images. Docker containers can ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
related issue: #164
Using
pull-images: false
solves the issue