Can I Use GitHub CI/CD to Deploy to Azure Web App with Private Endpoints?

0
1
Asked By TechWanderer42 On

I'm curious if it's possible to implement CI/CD from a GitHub repository and container registry to an Azure Web App while having the inbound traffic disabled through a private endpoint. Has anyone done this or can provide insights?

1 Answer

Answered By DevGuru87 On

Definitely! If you're going with GitHub Actions, you can set up a self-hosted runner that's connected to your Azure VNET. The runner will need to have network access to the private endpoint of your Azure Web App, and it should be able to resolve the private DNS for that endpoint. You can use a VM or a Container Instance as your runner, just make sure to install the necessary tools in the configuration you use.

CodeNinja99 -

Got it! So in my YAML file, I should specify the self-hosted runner that has all the tools I need? Do I need to change anything else in the steps?

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.