From e279c17c82d49e64dcb4350ebd7f19b89631fdad Mon Sep 17 00:00:00 2001 From: Josef Harte Date: Mon, 13 Apr 2026 11:08:50 +0100 Subject: [PATCH 1/4] params for aiservice migration --- src/mas/devops/templates/pipelinerun-update.yml.j2 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/mas/devops/templates/pipelinerun-update.yml.j2 b/src/mas/devops/templates/pipelinerun-update.yml.j2 index 83be320e..536f700f 100644 --- a/src/mas/devops/templates/pipelinerun-update.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-update.yml.j2 @@ -135,3 +135,11 @@ spec: - name: skip_entitlement_key_flag value: "{{ skip_entitlement_key_flag }}" {%- endif %} +{%- if aiservice_instance_ids is defined and aiservice_instance_ids != "" %} + - name: aiservice_instance_ids + value: "{{ aiservice_instance_ids }}" +{%- endif %} +{%- if aiservice_channel is defined and aiservice_channel != "" %} + - name: aiservice_channel + value: "{{ aiservice_channel }}" +{%- endif %} From 271bec05d49c6b9f444597af791b3b6a75ff24ac Mon Sep 17 00:00:00 2001 From: Richa Joshi Date: Mon, 13 Apr 2026 23:16:41 +0530 Subject: [PATCH 2/4] [patch] params for aiservice migration --- src/mas/devops/templates/pipelinerun-update.yml.j2 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/mas/devops/templates/pipelinerun-update.yml.j2 b/src/mas/devops/templates/pipelinerun-update.yml.j2 index 3268e0cc..cc7bc982 100644 --- a/src/mas/devops/templates/pipelinerun-update.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-update.yml.j2 @@ -142,3 +142,11 @@ spec: - name: odh_to_rhoai_migration value: "{{ odh_to_rhoai_migration }}" {%- endif %} +{%- if aiservice_instance_ids is defined and aiservice_instance_ids != "" %} + - name: aiservice_instance_ids + value: "{{ aiservice_instance_ids }}" +{%- endif %} +{%- if aiservice_channel is defined and aiservice_channel != "" %} + - name: aiservice_channel + value: "{{ aiservice_channel }}" +{%- endif %} \ No newline at end of file From 06dc4bbde02e5049818442522b65ae292371bf52 Mon Sep 17 00:00:00 2001 From: Josef Harte Date: Tue, 14 Apr 2026 12:40:07 +0100 Subject: [PATCH 3/4] remove unused param --- src/mas/devops/templates/pipelinerun-update.yml.j2 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/mas/devops/templates/pipelinerun-update.yml.j2 b/src/mas/devops/templates/pipelinerun-update.yml.j2 index 536f700f..7b64fbb6 100644 --- a/src/mas/devops/templates/pipelinerun-update.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-update.yml.j2 @@ -139,7 +139,3 @@ spec: - name: aiservice_instance_ids value: "{{ aiservice_instance_ids }}" {%- endif %} -{%- if aiservice_channel is defined and aiservice_channel != "" %} - - name: aiservice_channel - value: "{{ aiservice_channel }}" -{%- endif %} From 578a3c288dbda2046f3f16a8a362c5c4e9238d69 Mon Sep 17 00:00:00 2001 From: Josef Harte Date: Tue, 14 Apr 2026 12:44:40 +0100 Subject: [PATCH 4/4] fix param --- src/mas/devops/templates/pipelinerun-update.yml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mas/devops/templates/pipelinerun-update.yml.j2 b/src/mas/devops/templates/pipelinerun-update.yml.j2 index ecbe0dda..6fe95be9 100644 --- a/src/mas/devops/templates/pipelinerun-update.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-update.yml.j2 @@ -143,7 +143,7 @@ spec: value: "{{ odh_to_rhoai_migration }}" {%- endif %} -{%- if aiservice_channel is defined and aiservice_channel != "" %} - - name: aiservice_channel - value: "{{ aiservice_channel }}" +{%- if aiservice_instance_ids is defined and aiservice_instance_ids != "" %} + - name: aiservice_instance_ids + value: "{{ aiservice_instance_ids }}" {%- endif %}