Hello,
we have self hosted gitlab instance ver [12.10.14-ee].
And we have experienced weird behaviour from few of our pipelines…
On the Apr. 16th 8am GMT, few of our CI/CD jobs started to pull some image toward the end of its run.
Pulling docker image gitlab/gitlab-runner-helper:x86_64-577f813d
ERROR: Job failed: execution took longer than 1h0m0s seconds
Do you have any idea why it happened? It happened only for scheduled job of one pipeline others were OK.
.gitlab-ci.yml was basicly just:
image: python:3.8
variables:
PIP_CACHE_DIR: “$CI_PROJECT_DIR/.cache/pip”
GIT_CLEAN_FLAGS: -ffdx -e venv/ -e .cache/pip
- ls -a
- python -V # Print out python version for debugging
-
if [ -d “venv/bin” ]; then
source venv/bin/activate
else
pip install virtualenv
virtualenv venv
source venv/bin/activate
fi - pip install -r requirements.txt
prod:
tags:
- runner_tag
stage: production
only:
- schedules
script:
- python script_name.py
Thank you for you help.