S. Bonnell
S. Bonnell

Reputation: 13

Azure deployment fails with gitlab

I have an Azure web app running connected to a GitLab Repository. When I push new code to the GitLab Repo, the deployments fails and I get an error stating "Value cannot be null.\r\nParameter name: url"

It seems like this has been asked on here before but unfortunately there were no answers. Any help is appreciated.

Upvotes: 1

Views: 936

Answers (2)

David Ebbo
David Ebbo

Reputation: 43183

Note that GitLab is not directly supported from Azure Portal. However, there are some manual steps that can be used to set it up. You can find them here.

Also, make sure you are running a recent build of GitLab. Per this issue, 7.7.2 is tool old, and 7.11.0 or later works.

Upvotes: 1

VonC
VonC

Reputation: 1323183

As commented here, check if this is an authentication issue (i.e. being logged with the right account to the Azure instance in order to initiate the deployment)

The authentication should involve Add-AzureAccount, through for instance a powershell session.

Upvotes: 0

Related Questions