You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
This week I've updated an application to .NET5, also updated the pipeline image from: image: mcr.microsoft.com/dotnet/core/sdk:3.1 to image: mcr.microsoft.com/dotnet/sdk:5.0
The initial step of my pipeline is using a git submodule like:
script:
- git config --file .gitmodules submodule..folder/company.rulesets.url "git@bitbucket.org:company/company.rulesets.git"
- git submodule update --init --recursive
This step fails with the following output:
Submodule '.folder/company.rulesets' (git@bitbucket.org:company/company.rulesets.git) registered for path '.folder/company.rulesets'
Cloning into '/opt/atlassian/pipelines/agent/build/.folder/company.rulesets'...
error: cannot run ssh: No such file or directory
fatal: unable to fork
fatal: clone of 'git@bitbucket.org:company/company.rulesets.git' into submodule path '/opt/atlassian/pipelines/agent/build/.folder/company.rulesets' failed
Failed to clone '.folder/company.rulesets'. Retry scheduled
I've verified even re-created and added an ssh key in the ruleset repository. Am I missing something here?
The image mcr.microsoft.com/dotnet/sdk:5.0 does not contain any ssh client. I've fixed this issue by installing openssh-client in the pipelines file, see below.
# Install open-ssh
- apt-get update
- apt-get install --yes openssh-client
Announced in this blog, this holiday season we’re celebrating all things CI/CD and between now and the end of 2019 we’ll be showcasing content, use cases, feature announcements and more. One featur...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.