I have an ASP.NET Core application with a backend that uses Microsoft SQL Server running on Windows Server. This application was running on a Windows VM beforehand and we are moving to having it run in a container in OpenShift.
The application connects to SQL Server using integrated security with an Active Directory service account. If I pass in username and password in the connection string, will that just work?
I also found this article about using Kerberos to set this up (https://www.codeproject.com/Articles/1272546/Authenticate-NET-Core-Client-of-SQL-Server-with-In), but I am not sure it's a great pattern. I would appreciate any assistance.
EDIT: Sorry for not clarifying - it is a Linux container.