From adf9e73cd9b17ce8442ac78da3519801ba7770a4 Mon Sep 17 00:00:00 2001 From: Ripul Handoo Date: Mon, 6 Nov 2023 11:33:40 +0530 Subject: [PATCH] Fix bug: Move the CUSTOM_TLS_CERT from subscriber config to subscriber secret Signed-off-by: Ripul Handoo --- .../graphql/server/manifests/cluster/3b_agents_deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chaoscenter/graphql/server/manifests/cluster/3b_agents_deployment.yaml b/chaoscenter/graphql/server/manifests/cluster/3b_agents_deployment.yaml index 165ea2baddf..04208c1719a 100644 --- a/chaoscenter/graphql/server/manifests/cluster/3b_agents_deployment.yaml +++ b/chaoscenter/graphql/server/manifests/cluster/3b_agents_deployment.yaml @@ -10,7 +10,6 @@ data: VERSION: #{VERSION} START_TIME: #{START_TIME} SKIP_SSL_VERIFY: "#{SKIP_SSL_VERIFY}" - CUSTOM_TLS_CERT: "#{CUSTOM_TLS_CERT}" IS_INFRA_CONFIRMED: #{IS_INFRA_CONFIRMED} COMPONENTS: | DEPLOYMENTS: #{INFRA_DEPLOYMENTS} @@ -21,6 +20,7 @@ metadata: name: subscriber-secret namespace: #{INFRA_NAMESPACE} stringData: + CUSTOM_TLS_CERT: "#{CUSTOM_TLS_CERT}" INFRA_ID: #{INFRA_ID} ACCESS_KEY: #{ACCESS_KEY} ---