Skip to content

Commit 5c4e30e

Browse files
Fix: Add Redis parameters to PipelineRun template
- Added redis_action, redis_namespace, and redis_replicas parameters - Follows same pattern as MongoDB parameters - Fixes issue where Redis parameters were not being passed to PipelineRun - Required for Collaborate addon Redis installation This is the root cause fix for Redis not being installed when Collaborate addon is selected. The parameters were being set in the CLI but not included in the PipelineRun template, causing them to be filtered out.
1 parent 8749a84 commit 5c4e30e

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/mas/devops/templates/pipelinerun-install.yml.j2

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,17 @@ spec:
205205
value: "{{ ibm_mongo_admin_password }}"
206206
{%- endif %}
207207
{%- endif %}
208+
{%- if redis_action is defined and redis_action != "" %}
209+
210+
# Dependencies - Redis
211+
# -------------------------------------------------------------------------
212+
- name: redis_action
213+
value: "{{ redis_action }}"
214+
- name: redis_namespace
215+
value: "{{ redis_namespace }}"
216+
- name: redis_replicas
217+
value: "{{ redis_replicas }}"
218+
{%- endif %}
208219
{%- if kafka_action_system == "install" %}
209220

210221
# Dependencies - Kafka

0 commit comments

Comments
 (0)