Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Meaningful prefix for the job resource name. Must be under 52 chars in length to
Use the build/bin/set-cli-image-digest.sh script to update this value across all charts.
Included in $_job_hash (see below).
*/}}
{{- $_cli_image_digest := "sha256:887cc3059a04601241687711df0c03d662931e6719121eec0eb0490001b2c8b9" }}
{{- $_cli_image_digest := "sha256:5e66b92a7377476bfc861b0b96b09780b00e9b9bf7438ca210905fe260c2eed7" }}

{{- /*
A dict of values that influence the behaviour of the job in some way.
Expand Down Expand Up @@ -138,6 +138,8 @@ spec:
value: "{{ .Values.override_edge_certs }}"
- name: CIS_ENTRIES_TO_ADD
value: "{{ .Values.cis_entries_to_add }}"
- name: CIS_ALLOWED_IPS
value: "{{ .Values.cis_allowed_ips }}"

- name: SM_AWS_REGION
value: "{{ .Values.sm_aws_region }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ spec:
cis_waf: "{{ .Values.ibm_mas_suite.cis_waf }}"
cis_proxy: "{{ .Values.ibm_mas_suite.cis_proxy }}"
cis_service_name: "{{ .Values.ibm_mas_suite.cis_service_name }}"
{{- if not (empty .Values.ibm_mas_suite.allow_list) }}
cis_allowed_ips: "{{ .Values.ibm_mas_suite.allow_list.ips }}"
{{- end }}

{{- $health := .Values.ibm_suite_app_health_install -}}
{{- $iot := .Values.ibm_suite_app_iot_install -}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ spec:
instance_id: "{{ .Values.instance.id }}"
cluster_admin_role: {{ .Values.cluster_admin_role }}
application_admin_role: {{ .Values.application_admin_role }}
allow_list: "{{ .Values.allow_list }}"
{{- if not (empty .Values.allow_list) }}
allow_list: "{{ .Values.allow_list.ips }}"
{{- end }}
enhanced_dr: {{ .Values.enhanced_dr }}
extensions: {{ .Values.extensions }}
additional_vpn: {{ .Values.additional_vpn }}
Expand Down
Loading