From a6ea3eba450e1fd370c230e3a9eb79075c24e227 Mon Sep 17 00:00:00 2001 From: hita pandya Date: Tue, 28 Oct 2025 15:37:55 +0530 Subject: [PATCH 1/2] [patch] pass new parameter to control metrics reporting --- src/mas/devops/templates/pipelinerun-install.yml.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mas/devops/templates/pipelinerun-install.yml.j2 b/src/mas/devops/templates/pipelinerun-install.yml.j2 index 9975c231..d356d9eb 100644 --- a/src/mas/devops/templates/pipelinerun-install.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-install.yml.j2 @@ -539,6 +539,10 @@ spec: - name: mas_enable_walkme value: "{{ mas_enable_walkme }}" {%- endif %} +{%- if mas_report_adoption_metrics is defined and mas_report_adoption_metrics != "" %} + - name: mas_report_adoption_metrics + value: "{{ mas_report_adoption_metrics }}" +{%- endif %} # MAS Workspace # ------------------------------------------------------------------------- From 3b5002f633c0ff841ad8dc30ecde33f7de60f26e Mon Sep 17 00:00:00 2001 From: hita pandya Date: Mon, 2 Feb 2026 19:28:23 +0530 Subject: [PATCH 2/2] [patch] add support for new optout flags for python devops --- .../devops/templates/pipelinerun-install.yml.j2 | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/mas/devops/templates/pipelinerun-install.yml.j2 b/src/mas/devops/templates/pipelinerun-install.yml.j2 index d07d45c7..33067797 100644 --- a/src/mas/devops/templates/pipelinerun-install.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-install.yml.j2 @@ -535,9 +535,17 @@ spec: - name: mas_routing_mode value: "{{ mas_routing_mode }}" {%- endif %} -{%- if mas_report_adoption_metrics is defined and mas_report_adoption_metrics != "" %} - - name: mas_report_adoption_metrics - value: "{{ mas_report_adoption_metrics }}" +{%- if mas_deployment_progression is defined and mas_deployment_progression != "" %} + - name: mas_deployment_progression + value: "{{ mas_deployment_progression }}" +{%- endif %} +{%- if mas_usability_metrics is defined and mas_usability_metrics != "" %} + - name: mas_usability_metrics + value: "{{ mas_usability_metrics }}" +{%- endif %} +{%- if mas_feature_usage is defined and mas_feature_usage != "" %} + - name: mas_feature_usage + value: "{{ mas_feature_usage }}" {%- endif %} # MAS Workspace