skip to Main Content

Git push failed with Host key verification failed – Ubuntu

I use following steps in Jenkinsfile to push tags to github sshagent (credentials: ['jenkins']) { sh """ git config --add url."git@github.com:".insteadOf "https://github.com/" git config user.name 'Jenkins' git config user.email '$$$+###@users.noreply.github.com' git tag -a dimToOff_v"${PRETTY_BUILD_VERSION}"_"${BUILD_NUMBER}" ${COMMIT_ID} -m "${JENKINS_TAG_MESSAGE}" git push --tags…

VIEW QUESTION

How to pass docker run arguments in Jenkins?

I am trying to set up my Jenkins pipeline using this docker image. It requires to be executed as following: docker run --rm -v $PROJECT_DIR:/input -v $PROJECT_DIR:/output -e PLATFORM_ID=$PLATFORM_ID particle/buildpack-particle-firmware:$VERSION The implementation in my Jenkins pipeline looks like this: stage('build…

VIEW QUESTION

docker push Layer already exists invalid checksum digest format – Ubuntu

When i push image to private register(harbor): $ docker push harbor.wxtest.com/public/alpine-delrediskline:3.16.0-3 The push refers to repository [harbor.wxtest.com/public/alpine-delrediskline] 887d6ad1c9d4: Layer already exists c7c486fce125: Layer already exists 24302eb7d908: Layer already exists invalid checksum digest format I tried to delete all images and…

VIEW QUESTION
Back To Top
Search