Enable Azure AD in AKS instance of GitLab

Hi,

I’ve stuck with enabling Azure AD for a GitLab installed using Helm in AKS. Button Login with Azure AD is not shown at Login Page.
My azuresecret.yaml:

name: azure_activedirectory_v2
label: ‘Azure AD’
args:
  client_id: “xxx”
  client_secret: “xxx”
  tenant_id: “xxx”

Running this:

kubectl apply -n ingress-basic -f D:\azuresecret.yaml

My values.yaml:

USER-SUPPLIED VALUES:
USER-SUPPLIED VALUES: null
certmanager-issuer:
  email: mymail@mydomain
global:
  hosts:
    domain: mydomain
  omniauth:
    allowSingleSignOn: azure_activedirectory_v2
    enabled: true
    providers:
    - secret: gitlab-azure-ad

Running with this:

helm upgrade --install gitlab-test gitlab/gitlab -n ingress-basic -f D:\gitlab-test.yaml

Expected result: Login with Azure AD button is displayed at Sign In page
Actual result: Login with Azure AD button is missing (standard Sign In form available only)
Helm ls:

NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
gitlab-test ingress-basic 3 2021-09-13 20:07:42.5453775 +0300 EEST deployed gitlab-5.2.3 14.2.3

Any ideas?
Thank you.