this is my pipeline script:
pipeline {
agent any
stages {
stage('MVD python') {
steps {
git url: 'ssh://[email protected]:7999/lg6/mvdzos.git',
credentialsId: 'edawes',
branch: 'master'
sh 'ls -l'
}
}
}
}
simply trying to test if i can get access to the repo however I am getting the error
Fetching upstream changes from ssh://[email protected]:7999/lg6/mvdzos.git
git --version # timeout=10 git fetch --tags --progress ssh://[email protected]:7999/lg6/mvdzos.git +refs/heads/:refs/remotes/origin/ ERROR: Error cloning remote repo 'origin' hudson.plugins.git.GitException: Command "git fetch --tags --progress ssh://[email protected]:7999/lg6/mvdzos.git +refs/heads/:refs/remotes/origin/" returned status code 128: stdout: stderr: Host key verification failed. fatal: Could not read from remote repository.
beyond the obvious access rights issue which I am pretty sure I have, what else could the problem be?