From 2be2a94eeef6eb6523255052bbcce18b0563a614 Mon Sep 17 00:00:00 2001 From: Xin Jiang <53755997+xinredhat@users.noreply.github.com> Date: Fri, 6 Mar 2026 16:03:21 +0800 Subject: [PATCH] Revert "Change TPA authentication integration name" This reverts commit 968f56abad328e9c387570bab684dc5c38316f60. --- src/rhtap/core/integration/authentication/authentication.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rhtap/core/integration/authentication/authentication.ts b/src/rhtap/core/integration/authentication/authentication.ts index a10ddb00..5a8ee411 100644 --- a/src/rhtap/core/integration/authentication/authentication.ts +++ b/src/rhtap/core/integration/authentication/authentication.ts @@ -30,10 +30,10 @@ export class Authentication implements IntegrationSecret { * @returns Promise with the secret data */ private async loadSecret(): Promise> { - const secret = await this.kubeClient.getSecret('tssc-trustificationauth-integration', 'tssc'); + const secret = await this.kubeClient.getSecret('tssc-authentication-integration', 'tssc'); if (!secret) { throw new Error( - 'Authentication integration secret tssc-trustificationauth-integration not found in the cluster. Please ensure the secret exists.' + 'Authentication integration secret tssc-authentication-integration not found in the cluster. Please ensure the secret exists.' ); } return secret;