From cc1fcbd2faa37bb81b49ab8bb634af9aa36a245e Mon Sep 17 00:00:00 2001 From: Konstantin Khottchenkov Date: Thu, 18 Aug 2022 15:00:46 +0400 Subject: [PATCH] fix: change redis instance --- app/filemetadata/devops/azure/template/task/gitops.yml | 6 +++--- app/sdms/devops/azure/template/task/gitops.yml | 6 +++--- app/sdms/src/cloud/providers/azure/keyvault.ts | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/filemetadata/devops/azure/template/task/gitops.yml b/app/filemetadata/devops/azure/template/task/gitops.yml index a120376b..f80a55bd 100644 --- a/app/filemetadata/devops/azure/template/task/gitops.yml +++ b/app/filemetadata/devops/azure/template/task/gitops.yml @@ -52,9 +52,9 @@ steps: cd $(Build.SourcesDirectory)/$MANIFEST_REPO function configure_git_profile() { - git config --global user.email "gitops@azure.com" - git config --global user.name "osdu bot" - git config --global pull.ff only + git config --location=global user.email "gitops@azure.com" + git config --location=global user.name "osdu bot" + git config --location=global pull.ff only } function git_checkout() { diff --git a/app/sdms/devops/azure/template/task/gitops.yml b/app/sdms/devops/azure/template/task/gitops.yml index 53eec49f..16f48339 100644 --- a/app/sdms/devops/azure/template/task/gitops.yml +++ b/app/sdms/devops/azure/template/task/gitops.yml @@ -55,9 +55,9 @@ steps: cd $(Build.SourcesDirectory)/$MANIFEST_REPO function configure_git_profile() { - git config --global user.email "gitops@azure.com" - git config --global user.name "osdu bot" - git config --global pull.ff only + git config --location=global user.email "gitops@azure.com" + git config --location=global user.name "osdu bot" + git config --location=global pull.ff only } function git_checkout() { diff --git a/app/sdms/src/cloud/providers/azure/keyvault.ts b/app/sdms/src/cloud/providers/azure/keyvault.ts index d844fdb9..1829207c 100644 --- a/app/sdms/src/cloud/providers/azure/keyvault.ts +++ b/app/sdms/src/cloud/providers/azure/keyvault.ts @@ -20,8 +20,8 @@ import { AzureCredentials } from './credentials'; export class Keyvault { public static AI_INSTRUMENTATION_KEY = 'appinsights-key'; - public static REDIS_HOST = 'redis-hostname'; - public static REDIS_KEY = 'redis-password'; + public static REDIS_HOST = 'redis-queue-hostname'; + public static REDIS_KEY = 'redis-queue-password'; public static SP_TENANT_ID = 'app-dev-sp-tenant-id'; public static SP_CLIENT_ID = 'app-dev-sp-username'; // pragma: allowlist nextline secret -- GitLab