From e26c264bbc11f538ff86028b0d3dc987bee0185c Mon Sep 17 00:00:00 2001 From: Jeel Oza Date: Thu, 16 Apr 2026 17:13:45 +0530 Subject: [PATCH 1/3] Remove redundant RSL's keys from the RSL secret in the Ansible role and from python-devops --- src/mas/devops/templates/pipelinerun-install.yml.j2 | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/mas/devops/templates/pipelinerun-install.yml.j2 b/src/mas/devops/templates/pipelinerun-install.yml.j2 index eebbbd5a..65942ba2 100644 --- a/src/mas/devops/templates/pipelinerun-install.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-install.yml.j2 @@ -824,14 +824,7 @@ spec: - name: tenant_entitlement_end_date value: "{{ tenant_entitlement_end_date }}" - # RSL - # ------------------------------------------------------------------------- - - name: rsl_url - value: "{{ rsl_url }}" - - name: rsl_org_id - value: "{{ rsl_org_id }}" - - name: rsl_token - value: "{{ rsl_token }}" + #Removed rsl_org, rsl_rl, rsl_token # S3 # ------------------------------------------------------------------------- From d12af948504ac9ad1403d8f979b81fec18654bff Mon Sep 17 00:00:00 2001 From: Jeel Oza Date: Fri, 15 May 2026 09:47:47 +0530 Subject: [PATCH 2/3] Add rsl_ca_cert parameter for RSL CA certificate configuration --- src/mas/devops/templates/pipelinerun-install.yml.j2 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/mas/devops/templates/pipelinerun-install.yml.j2 b/src/mas/devops/templates/pipelinerun-install.yml.j2 index 360cd72b..329a4bad 100644 --- a/src/mas/devops/templates/pipelinerun-install.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-install.yml.j2 @@ -840,7 +840,12 @@ spec: value: "{{ tenant_scheduling_config_file }}" {%- endif %} - #Removed rsl_org, rsl_rl, rsl_token +{%- if rsl_ca_cert is defined and rsl_ca_cert != "" %} + # RSL - CA Certificate + # ------------------------------------------------------------------------- + - name: rsl_ca_cert + value: "{{ rsl_ca_cert }}" +{%- endif %} # S3 # ------------------------------------------------------------------------- From 6b8fc08d26302e3c786040f530b4c2de025e4d8a Mon Sep 17 00:00:00 2001 From: Jeel Oza Date: Fri, 15 May 2026 10:06:51 +0530 Subject: [PATCH 3/3] Corrected the parameters name --- src/mas/devops/templates/pipelinerun-install.yml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mas/devops/templates/pipelinerun-install.yml.j2 b/src/mas/devops/templates/pipelinerun-install.yml.j2 index 45c7c343..009bd39a 100644 --- a/src/mas/devops/templates/pipelinerun-install.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-install.yml.j2 @@ -844,11 +844,11 @@ spec: value: "{{ tenant_scheduling_config_file }}" {%- endif %} -{%- if rsl_ca_cert is defined and rsl_ca_cert != "" %} +{%- if rsl_ca_crt is defined and rsl_ca_crt != "" %} # RSL - CA Certificate # ------------------------------------------------------------------------- - - name: rsl_ca_cert - value: "{{ rsl_ca_cert }}" + - name: rsl_ca_crt + value: "{{ rsl_ca_crt }}" {%- endif %} # S3