|
74 | 74 | cis_proxy: "{{ .Values.ibm_mas_suite.cis_proxy }}"
|
75 | 75 | cis_service_name: "{{ .Values.ibm_mas_suite.cis_service_name }}"
|
76 | 76 |
|
| 77 | + {{- $health := .Values.ibm_suite_app_health_install -}} |
| 78 | + {{- $iot := .Values.ibm_suite_app_iot_install -}} |
| 79 | + {{- $core := .Values.ibm_mas_suite -}} |
| 80 | + {{- $manage := .Values.ibm_suite_app_manage_install -}} |
| 81 | + {{- $monitor := .Values.ibm_suite_app_monitor_install -}} |
| 82 | + {{- $predict := .Values.ibm_suite_app_predict_install -}} |
| 83 | + {{- $visualinspection := .Values.ibm_suite_app_visualinspection_install -}} |
| 84 | + {{- $optimizer := .Values.ibm_suite_app_optimizer_install -}} |
| 85 | + {{- $facilities := .Values.ibm_suite_app_facilities_install -}} |
| 86 | +
|
| 87 | + {{- $health_str := printf "%s" (default "" $health) -}} |
| 88 | + {{- $iot_str := printf "%s" (default "" $iot) -}} |
| 89 | + {{- $core_str := printf "%s" (default "" $core) -}} |
| 90 | + {{- $manage_str := printf "%s" (default "" $manage) -}} |
| 91 | + {{- $monitor_str := printf "%s" (default "" $monitor) -}} |
| 92 | + {{- $predict_str := printf "%s" (default "" $predict) -}} |
| 93 | + {{- $visualinspection_str := printf "%s" (default "" $visualinspection) -}} |
| 94 | + {{- $optimizer_str := printf "%s" (default "" $optimizer) -}} |
| 95 | + {{- $facilities_str := printf "%s" (default "" $facilities) -}} |
| 96 | +
|
| 97 | + {{- $health_comma_separated := printf "%s" (if (gt (len $health_str) 0) "health") -}} |
| 98 | + {{- $iot_comma_separated := printf "%s" (if (gt (len $iot_str) 0) "iot") -}} |
| 99 | + {{- $core_comma_separated := printf "%s" (if (gt (len $core_str) 0) "core") -}} |
| 100 | + {{- $manage_comma_separated := printf "%s" (if (gt (len $manage_str) 0) "manage") -}} |
| 101 | + {{- $reportdb_comma_separated := printf "%s" (if (gt (len $manage_str) 0) "reportdb") -}} |
| 102 | + {{- $monitor_comma_separated := printf "%s" (if (gt (len $monitor_str) 0) "monitor") -}} |
| 103 | + {{- $predict_comma_separated := printf "%s" (if (gt (len $predict_str) 0) "predict") -}} |
| 104 | + {{- $visualinspection_comma_separated := printf "%s" (if (gt (len $visualinspection_str) 0) "visualinspection") -}} |
| 105 | + {{- $optimizer_comma_separated := printf "%s" (if (gt (len $optimizer_str) 0) "optimizer") -}} |
| 106 | + {{- $facilities_comma_separated := printf "%s" (if (gt (len $facilities_str) 0) "facilities") -}} |
| 107 | + |
| 108 | + {{- $list := list $health_comma_separated $iot_comma_separated $core_comma_separated $manage_comma_separated $reportdb_comma_separated $monitor_comma_separated $predict_comma_separated $visualinspection_comma_separated $optimizer_comma_separated $facilities_comma_separated -}} |
| 109 | + cis_entries_to_add: {{ printf "%s" (join "," $list) }} |
77 | 110 |
|
78 | 111 | {{- if .Values.override_dns_cis_flags_to_false }}
|
79 | 112 | update_dns_entries: "false"
|
|
0 commit comments