From d5ff95576d7d718abd30b0dfc1b83acae0d80648 Mon Sep 17 00:00:00 2001 From: Dixit Sathwara Date: Thu, 4 Jun 2026 15:45:09 +0530 Subject: [PATCH 01/10] [patch] add cluster mode support --- ...reinstall-mas-rbac-job_ServiceAccount.yaml | 36 +++++ .../templates/00-preinstall-mas-rbac_Job.yaml | 125 ++++++++++++++++++ .../templates/010-ibm-sync-jobs.yaml | 3 + 3 files changed, 164 insertions(+) create mode 100644 instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml create mode 100644 instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml diff --git a/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml b/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml new file mode 100644 index 000000000..31ab3045d --- /dev/null +++ b/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml @@ -0,0 +1,36 @@ +{{- if .Values.application_admin_role }} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: preinstall-mas-rbac-job + namespace: mas-{{ .Values.instance_id }}-syncres + annotations: + argocd.argoproj.io/sync-wave: "01" +{{- if .Values.custom_labels }} + labels: +{{ .Values.custom_labels | toYaml | indent 4 }} +{{- end }} + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: preinstall-mas-rbac-job-cluster-rolebinding-{{ .Values.instance_id }} + annotations: + argocd.argoproj.io/sync-wave: "02" +{{- if .Values.custom_labels }} + labels: +{{ .Values.custom_labels | toYaml | indent 4 }} +{{- end }} +subjects: + - kind: ServiceAccount + name: preinstall-mas-rbac-job + namespace: mas-{{ .Values.instance_id }}-syncres +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +{{- end }} + +# Made with Bob diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml new file mode 100644 index 000000000..2d1fa0275 --- /dev/null +++ b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml @@ -0,0 +1,125 @@ +{{- if .Values.application_admin_role }} +{{- if .Values.apply_preinstall_mas_rbac }} +{{- $masChannel := .Values.mas_channel }} +{{- $versionParts := splitList "." $masChannel }} +{{- $majorVersion := index $versionParts 0 | int }} +{{- $minorVersion := index $versionParts 1 | int }} +{{- if or (gt $majorVersion 9) (and (eq $majorVersion 9) (ge $minorVersion 2)) }} + +{{- /* +Meaningful prefix for the job resource name. Must be under 52 chars in length to leave room for the 11 chars reserved for '-' and $_job_hash. +*/}} +{{- $_job_name_prefix := "preinstall-mas-rbac" }} + +{{- /* +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:4636b74525a46ebd88cd540794e8e23143f0112ea85149f9dfc78d02704ad5a6" }} + +{{- /* +A dict of values that influence the behaviour of the job in some way. +Any changes to values in this dict will trigger a rerun of the job. +Since jobs must be idemopotent, it's generally safe to pass in values here that are not +strictly necessary (i.e. including some values that don't actually influence job behaviour). +We may want to refine this further though for jobs that can take a long time to complete. +Included in $_job_hash (see below). +*/}} +{{- $_job_config_values := omit .Values "junitreporter" }} + +{{- /* +Increment this value whenever you make a change to an immutable field of the Job resource. +E.g. passing in a new environment variable. +Included in $_job_hash (see below). +*/}} +{{- $_job_version := "v1" }} + +{{- /* +10 char hash appended to the job name taking into account $_job_config_values, $_job_version and $_cli_image_digest +This is to ensure ArgoCD will create a new job resource intead of attempting (and failing) to update an +immutable field of any existing Job resource. +*/}} +{{- $_job_hash := print ($_job_config_values | toYaml) $_cli_image_digest $_job_version | adler32sum }} + +{{- $_job_name := join "-" (list $_job_name_prefix $_job_hash )}} + +{{- /* +Set as the value for the mas.ibm.com/job-cleanup-group label on the Job resource. + +When the auto_delete flag is not set on the root application, a CronJob in the cluster uses this label +to identify old Job resources that should be pruned on behalf of ArgoCD. + +Any Job resources in the same namespace that have the mas.ibm.com/job-cleanup-group with this value +will be considered to belong to the same cleanup group. All but the most recent (i.e. with the latest "creation_timestamp") +Jobs will be automatically deleted. + +$_job_cleanup_group can usually just be based on $_job_name_prefix. There are some special cases +where multiple Jobs are created in our templates using a Helm loop. In those cases, additional descriminators +must be added to $_job_cleanup_group. + +By convention, we sha1sum this value to guarantee we never exceed the 63 char limit regardless of which discriminators +are required here. + +*/}} +{{- $_job_cleanup_group := cat $_job_name_prefix | sha1sum }} + + +--- +apiVersion: batch/v1 +kind: Job +metadata: + name: {{ $_job_name }} + namespace: mas-{{ .Values.instance_id }}-syncres + annotations: + argocd.argoproj.io/sync-wave: "00" + labels: + mas.ibm.com/job-cleanup-group: {{ $_job_cleanup_group }} +{{- if .Values.custom_labels }} +{{ .Values.custom_labels | toYaml | indent 4 }} +{{- end }} +spec: + template: + metadata: + labels: + app: "sync-job" +{{- if .Values.custom_labels }} +{{ .Values.custom_labels | toYaml | indent 8 }} +{{- end }} + spec: + containers: + - name: preinstall-mas-rbac + image: {{ .Values.cli_image_repo | default "quay.io/ibmmas/cli" }}@{{ $_cli_image_digest }} + imagePullPolicy: IfNotPresent + env: + - name: MAS_INSTANCE_ID + value: "{{ .Values.instance_id }}" + - name: MAS_VERSION + value: "{{ .Values.mas_channel }}" + command: + - /bin/sh + - -c + - | + set -e + + echo "" + echo "================================================================================" + echo "Applying Pre-Install MAS RBAC (Cluster Mode)" + echo "================================================================================" + + mas-devops-apply-preinstall-rbac-for-saas \ + --mas-instance-id "${MAS_INSTANCE_ID}" \ + --mas-version "${MAS_VERSION}" \ + --admin-mode "cluster" + + rc=$? + echo "preinstall_mas_rbac rc=${rc}" + [ $rc -ne 0 ] && exit $rc + exit 0 + + restartPolicy: Never + serviceAccountName: preinstall-mas-rbac-job + backoffLimit: 4 + +{{- end }} +{{- end }} +{{- end }} \ No newline at end of file diff --git a/root-applications/ibm-mas-instance-root/templates/010-ibm-sync-jobs.yaml b/root-applications/ibm-mas-instance-root/templates/010-ibm-sync-jobs.yaml index d858362bf..f46ef465f 100644 --- a/root-applications/ibm-mas-instance-root/templates/010-ibm-sync-jobs.yaml +++ b/root-applications/ibm-mas-instance-root/templates/010-ibm-sync-jobs.yaml @@ -63,6 +63,9 @@ spec: {{- if not (empty .Values.ibm_mas_suite) }} + apply_preinstall_mas_rbac: {{ .Values.apply_preinstall_mas_rbac | default true }} + mas_channel: "{{ .Values.ibm_mas_suite.mas_channel }}" + mas_manual_cert_mgmt: {{ .Values.ibm_mas_suite.mas_manual_cert_mgmt }} dns_provider: "{{ .Values.ibm_mas_suite.dns_provider }}" mas_workspace_id: "{{ .Values.ibm_mas_suite.mas_workspace_id }}" From 39983480b6ed779eb6e96aa301d3a7af30877b4c Mon Sep 17 00:00:00 2001 From: Dixit Sathwara Date: Fri, 5 Jun 2026 17:17:58 +0530 Subject: [PATCH 02/10] [patch] update the cli digest --- .../010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml index 2d1fa0275..b6c8caf89 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml @@ -15,7 +15,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:4636b74525a46ebd88cd540794e8e23143f0112ea85149f9dfc78d02704ad5a6" }} +{{- $_cli_image_digest := "sha256:45a909b030e47886bd127c678f133b9d2e113fb27311db5ff08a679b1573c89e" }} {{- /* A dict of values that influence the behaviour of the job in some way. From 4ef6dc0aa493916e81130f33ddd037136a136347 Mon Sep 17 00:00:00 2001 From: Dixit Sathwara Date: Fri, 5 Jun 2026 17:37:10 +0530 Subject: [PATCH 03/10] update sha --- .../010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml index b6c8caf89..bb3f87ea3 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml @@ -15,7 +15,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:45a909b030e47886bd127c678f133b9d2e113fb27311db5ff08a679b1573c89e" }} +{{- $_cli_image_digest := "sha256:e63314e8ba443c7d1c7fa6b65e8eeaf8c4a6391cdf9dc6c7adb1ded79c5c0fc9" }} {{- /* A dict of values that influence the behaviour of the job in some way. From b941b0bbcdf7f96c96ead0f30168ba6fc85fd709 Mon Sep 17 00:00:00 2001 From: Dixit Sathwara Date: Sun, 7 Jun 2026 18:28:41 +0530 Subject: [PATCH 04/10] update the cli image digest --- .../010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml index bb3f87ea3..3aa8eb3fc 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml @@ -15,7 +15,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:e63314e8ba443c7d1c7fa6b65e8eeaf8c4a6391cdf9dc6c7adb1ded79c5c0fc9" }} +{{- $_cli_image_digest := "sha256:52405720b66960d8764bf43fc65f440bbea47e55d4670c4642451ac22732fba5" }} {{- /* A dict of values that influence the behaviour of the job in some way. From f92a7cff450463d8e098d572be089eccdf6688b8 Mon Sep 17 00:00:00 2001 From: Dixit Sathwara Date: Sun, 7 Jun 2026 19:12:17 +0530 Subject: [PATCH 05/10] update cli sha --- .../010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml index 3aa8eb3fc..f4d5b7016 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml @@ -15,7 +15,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:52405720b66960d8764bf43fc65f440bbea47e55d4670c4642451ac22732fba5" }} +{{- $_cli_image_digest := "sha256:1c2c06e55db5ad2fbe882aa4319e85e44f4621d19a56b7405f45ecd7f6cc0ae1" }} {{- /* A dict of values that influence the behaviour of the job in some way. From 245fd977ffe8a930c02bce0f1594ff0efc1eed91 Mon Sep 17 00:00:00 2001 From: Dixit Sathwara Date: Mon, 8 Jun 2026 10:25:12 +0530 Subject: [PATCH 06/10] remove the unncessary flag --- .../templates/00-preinstall-mas-rbac_Job.yaml | 3 --- .../ibm-mas-instance-root/templates/010-ibm-sync-jobs.yaml | 2 -- 2 files changed, 5 deletions(-) diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml index f4d5b7016..9cbed5711 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml @@ -1,5 +1,4 @@ {{- if .Values.application_admin_role }} -{{- if .Values.apply_preinstall_mas_rbac }} {{- $masChannel := .Values.mas_channel }} {{- $versionParts := splitList "." $masChannel }} {{- $majorVersion := index $versionParts 0 | int }} @@ -119,7 +118,5 @@ spec: restartPolicy: Never serviceAccountName: preinstall-mas-rbac-job backoffLimit: 4 - -{{- end }} {{- end }} {{- end }} \ No newline at end of file diff --git a/root-applications/ibm-mas-instance-root/templates/010-ibm-sync-jobs.yaml b/root-applications/ibm-mas-instance-root/templates/010-ibm-sync-jobs.yaml index f46ef465f..5e32b96e2 100644 --- a/root-applications/ibm-mas-instance-root/templates/010-ibm-sync-jobs.yaml +++ b/root-applications/ibm-mas-instance-root/templates/010-ibm-sync-jobs.yaml @@ -63,9 +63,7 @@ spec: {{- if not (empty .Values.ibm_mas_suite) }} - apply_preinstall_mas_rbac: {{ .Values.apply_preinstall_mas_rbac | default true }} mas_channel: "{{ .Values.ibm_mas_suite.mas_channel }}" - mas_manual_cert_mgmt: {{ .Values.ibm_mas_suite.mas_manual_cert_mgmt }} dns_provider: "{{ .Values.ibm_mas_suite.dns_provider }}" mas_workspace_id: "{{ .Values.ibm_mas_suite.mas_workspace_id }}" From 1c9995ef21b249bb13e83c02049051a97d66bc18 Mon Sep 17 00:00:00 2001 From: Dixit Sathwara Date: Mon, 8 Jun 2026 10:27:48 +0530 Subject: [PATCH 07/10] update 01-02-preinstall-mas-rbac-job_ServiceAccount.yaml --- .../01-02-preinstall-mas-rbac-job_ServiceAccount.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml b/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml index 31ab3045d..831e7e864 100644 --- a/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml +++ b/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml @@ -31,6 +31,4 @@ roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: cluster-admin -{{- end }} - -# Made with Bob +{{- end }} \ No newline at end of file From 32aecb8f65a79335c6c84231e938dc76ba5bbdb8 Mon Sep 17 00:00:00 2001 From: Dixit Sathwara Date: Mon, 8 Jun 2026 12:26:09 +0530 Subject: [PATCH 08/10] use cluster_admin_role instead of application_admin_role --- .../templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml | 2 +- .../010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml b/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml index 831e7e864..3617e1694 100644 --- a/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml +++ b/instance-applications/000-ibm-sync-resources/templates/01-02-preinstall-mas-rbac-job_ServiceAccount.yaml @@ -1,4 +1,4 @@ -{{- if .Values.application_admin_role }} +{{- if .Values.cluster_admin_role }} --- apiVersion: v1 kind: ServiceAccount diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml index 9cbed5711..48c33cda0 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml @@ -1,4 +1,4 @@ -{{- if .Values.application_admin_role }} +{{- if .Values.cluster_admin_role }} {{- $masChannel := .Values.mas_channel }} {{- $versionParts := splitList "." $masChannel }} {{- $majorVersion := index $versionParts 0 | int }} From cd6c24ea2c900e9c78a79633c1bc1c85927b7a91 Mon Sep 17 00:00:00 2001 From: Dixit Sathwara Date: Mon, 8 Jun 2026 19:45:20 +0530 Subject: [PATCH 09/10] update the cli image digest sha --- .../010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml index 48c33cda0..5c95dbc77 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml @@ -14,7 +14,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:1c2c06e55db5ad2fbe882aa4319e85e44f4621d19a56b7405f45ecd7f6cc0ae1" }} +{{- $_cli_image_digest := "sha256:f143774068b169f3d69571887ed2173c3bb2f586b6f09151218a327fe3a6ee87" }} {{- /* A dict of values that influence the behaviour of the job in some way. From 6f0111949b768327288152f0f7f6649c206de975 Mon Sep 17 00:00:00 2001 From: Nivedithaa Mahendran Date: Mon, 15 Jun 2026 15:54:42 +0530 Subject: [PATCH 10/10] updated cli version --- .../templates/_ecr-token-updater-helpers.tpl | 2 +- .../000-job-cleaner/templates/04-jobcleaner_CronJob.yaml | 2 +- .../templates/04-postsync-update-sm_Job.yaml | 2 +- .../030-ibm-dro/templates/12-2-dro-dns_job.yaml | 2 +- .../030-ibm-dro/templates/14-postsync-update-sm_Job.yaml | 2 +- .../templates/postdelete-MarketplaceConfigs.yaml | 2 +- .../templates/postdelete-ProfileBundles.yaml | 2 +- .../055-instana-agent-operator/templates/08-CronJob.yaml | 2 +- .../060-custom-sa/templates/04-postsync-update-sm_Job.yaml | 2 +- .../200-cluster-promotion/templates/02-cluster-verify_Job.yaml | 2 +- .../templates/03-cluster-promoter_Job.yaml | 2 +- .../010-ibm-sync-jobs/templates/00-aws-docdb-add-user_Job.yaml | 2 +- .../010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml | 2 +- .../010-ibm-sync-jobs/templates/01-ibm-mas_suite_certs_Job.yaml | 2 +- .../010-ibm-sync-jobs/templates/01-ibm-mas_suite_dns_Job.yaml | 2 +- .../templates/PostDelete-aws-docdb-remove-user_Job.yaml | 2 +- .../100-ibm-sls/templates/07-postsync-update-sm_Job.yaml | 2 +- .../101-ibm-sync-jobs-cp4d/templates/02-ibm-cp4d-presync.yaml | 2 +- .../templates/04-ibm-cp4d_prereqs_ops.yaml | 2 +- .../templates/04-ibm-cp4d_upg_cleanup.yaml | 2 +- .../110-ibm-cp4d/templates/03-ibm-cp4d-mcs_patch_sa.yaml | 2 +- .../110-ibm-cp4d/templates/07-ibm-cp4d_patch_zenservice.yaml | 2 +- .../110-ibm-cp4d/templates/08-ibm-cp4d-post-verify.yaml | 2 +- .../110-ibm-cp4d/templates/09-ibm-cp4d_services_base.yaml | 2 +- .../113-ibm-aiservice/templates/07-postsync-migration-job.yaml | 2 +- .../templates/00-presync-migration-job.yaml | 2 +- .../templates/03-tenant-migration-job.yaml | 2 +- .../templates/06-aiservice-km-s3-secret.yaml | 2 +- .../templates/08-aiservice-postsyncjob.yaml | 2 +- .../templates/08-postsync-migration-job.yaml | 2 +- .../templates/00-presync-await-crd_Job.yaml | 2 +- .../120-ibm-db2u-database/templates/04-db2u-Backup_Cron.yaml | 2 +- .../templates/07-postsync-setup-db2_Job.yaml | 2 +- .../120-ibm-db2u-database/templates/10-postsync-setup-hadr.yaml | 2 +- .../templates/00-presync-create-database.yaml | 2 +- .../templates/01-dbs-rds-postsync-setup.yaml | 2 +- .../120-ibm-dbs-rds-database/templates/03-backup-cronjobs.yaml | 2 +- .../120-ibm-spark/templates/02-ibm-spark-control-plane.yaml | 2 +- .../120-ibm-wsl/templates/02-ibm-wsl-post-verify.yaml | 2 +- .../templates/01-cpd-service-post-ops.yaml | 2 +- .../templates/00-presync-create-db2-rds-user-Job.yaml | 2 +- .../templates/00-presync-create-db2-user_Job.yaml | 2 +- .../130-ibm-jdbc-config/templates/postdelete-delete-cr.yaml | 2 +- .../templates/postdelete-delete-db2-user_Job.yaml | 2 +- .../130-ibm-kafka-config/templates/postdelete-delete-cr.yaml | 2 +- .../templates/postdelete-delete-cr.yaml | 2 +- .../130-ibm-mas-app-config/templates/postdelete-delete-cr.yaml | 2 +- .../130-ibm-mas-bas-config/templates/postdelete-delete-cr.yaml | 2 +- .../130-ibm-mas-idp-config/templates/postdelete-delete-cr.yaml | 2 +- .../templates/postdelete-delete-cr.yaml | 2 +- .../130-ibm-mas-sls-config/templates/postdelete-delete-cr.yaml | 2 +- .../130-ibm-mas-smtp-config/templates/postdelete-delete-cr.yaml | 2 +- .../130-ibm-mas-suite/templates/05-postsync-add-label_Job.yaml | 2 +- .../templates/06-postsync-configtool-oidc.yaml | 2 +- .../templates/07-postsync-set_welcome_messsage_Job.yaml | 2 +- .../templates/postdelete-delete-cr.yaml | 2 +- .../templates/05-postsync-add-label_Job.yaml | 2 +- .../templates/00-presync-add-mvi-scc_Job.yaml | 2 +- .../templates/06-postsync-add-mvi-scc_Job.yaml | 2 +- .../templates/02-ibm-manage-update_Job.yaml | 2 +- .../templates/04-postsync-add-label_Job.yaml | 2 +- .../templates/04-postsync-manage-sanity.yaml | 2 +- .../templates/04-postsync-manage-verify.yaml | 2 +- .../templates/04-postsync-maximoit-sanity.yaml | 2 +- .../templates/04-postsync-maximoit-verify.yaml | 2 +- .../templates/04-postsync-mvi-sanity.yaml | 2 +- .../templates/04-postsync-mvi-verify.yaml | 2 +- .../templates/700-702-postsync-db2-manage.yaml | 2 +- .../templates/703-postsync-rds-app-roles.yaml | 2 +- .../templates/postdelete-delete-cr.yaml | 2 +- .../templates/001-ibm-create-initial-users.yaml | 2 +- sls-applications/100-ibm-sls/templates/07-ibm-sls-dns_job.yaml | 2 +- .../100-ibm-sls/templates/08-postsync-update-sm_Job.yaml | 2 +- .../junitreporter/templates/00-presync-report-starter.yaml | 2 +- .../junitreporter/templates/10-postsync-report-starter.yaml | 2 +- 75 files changed, 75 insertions(+), 75 deletions(-) diff --git a/cluster-applications/000-image-mirroring/templates/_ecr-token-updater-helpers.tpl b/cluster-applications/000-image-mirroring/templates/_ecr-token-updater-helpers.tpl index 3c28a6634..348495036 100644 --- a/cluster-applications/000-image-mirroring/templates/_ecr-token-updater-helpers.tpl +++ b/cluster-applications/000-image-mirroring/templates/_ecr-token-updater-helpers.tpl @@ -3,7 +3,7 @@ ECR Token Updater Pod Template This template defines the pod specification used by both the CronJob and the initial Job */}} {{- define "ecr-token-updater.podTemplate" -}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} metadata: {{- if .Values.custom_labels }} labels: diff --git a/cluster-applications/000-job-cleaner/templates/04-jobcleaner_CronJob.yaml b/cluster-applications/000-job-cleaner/templates/04-jobcleaner_CronJob.yaml index 7f091b167..a575c4091 100644 --- a/cluster-applications/000-job-cleaner/templates/04-jobcleaner_CronJob.yaml +++ b/cluster-applications/000-job-cleaner/templates/04-jobcleaner_CronJob.yaml @@ -1,7 +1,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- $ns := "job-cleaner" }} diff --git a/cluster-applications/010-redhat-cert-manager/templates/04-postsync-update-sm_Job.yaml b/cluster-applications/010-redhat-cert-manager/templates/04-postsync-update-sm_Job.yaml index 699dc0c1d..e7f2c3590 100644 --- a/cluster-applications/010-redhat-cert-manager/templates/04-postsync-update-sm_Job.yaml +++ b/cluster-applications/010-redhat-cert-manager/templates/04-postsync-update-sm_Job.yaml @@ -17,7 +17,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/cluster-applications/030-ibm-dro/templates/12-2-dro-dns_job.yaml b/cluster-applications/030-ibm-dro/templates/12-2-dro-dns_job.yaml index a3fb08c0f..bb19a1669 100644 --- a/cluster-applications/030-ibm-dro/templates/12-2-dro-dns_job.yaml +++ b/cluster-applications/030-ibm-dro/templates/12-2-dro-dns_job.yaml @@ -18,7 +18,7 @@ data: type: Opaque --- {{- if and (eq .Values.dns_provider "cis") (not (empty .Values.cis_crn)) (not (empty .Values.dro_public_domain)) }} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- $_job_name_prefix := "ibm-dro-dns" }} {{- $_job_cleanup_group := cat $_job_name_prefix | sha1sum }} {{- $_job_config_values := omit .Values "junitreporter" }} diff --git a/cluster-applications/030-ibm-dro/templates/14-postsync-update-sm_Job.yaml b/cluster-applications/030-ibm-dro/templates/14-postsync-update-sm_Job.yaml index e5f1ea8fc..6f2896e57 100644 --- a/cluster-applications/030-ibm-dro/templates/14-postsync-update-sm_Job.yaml +++ b/cluster-applications/030-ibm-dro/templates/14-postsync-update-sm_Job.yaml @@ -9,7 +9,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/cluster-applications/032-ibm-dro-cleanup/templates/postdelete-MarketplaceConfigs.yaml b/cluster-applications/032-ibm-dro-cleanup/templates/postdelete-MarketplaceConfigs.yaml index 29216eb78..15bd4faae 100644 --- a/cluster-applications/032-ibm-dro-cleanup/templates/postdelete-MarketplaceConfigs.yaml +++ b/cluster-applications/032-ibm-dro-cleanup/templates/postdelete-MarketplaceConfigs.yaml @@ -2,7 +2,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $job_name := "postdelete-delete-marketplaceconfigs-job" }} diff --git a/cluster-applications/041-cis-compliance-cleanup/templates/postdelete-ProfileBundles.yaml b/cluster-applications/041-cis-compliance-cleanup/templates/postdelete-ProfileBundles.yaml index cd8d80429..7dde81952 100644 --- a/cluster-applications/041-cis-compliance-cleanup/templates/postdelete-ProfileBundles.yaml +++ b/cluster-applications/041-cis-compliance-cleanup/templates/postdelete-ProfileBundles.yaml @@ -2,7 +2,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $job_name := "postdelete-delete-profilebundles-job" }} diff --git a/cluster-applications/055-instana-agent-operator/templates/08-CronJob.yaml b/cluster-applications/055-instana-agent-operator/templates/08-CronJob.yaml index ce5f61eb9..6c40613d9 100644 --- a/cluster-applications/055-instana-agent-operator/templates/08-CronJob.yaml +++ b/cluster-applications/055-instana-agent-operator/templates/08-CronJob.yaml @@ -2,7 +2,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} --- diff --git a/cluster-applications/060-custom-sa/templates/04-postsync-update-sm_Job.yaml b/cluster-applications/060-custom-sa/templates/04-postsync-update-sm_Job.yaml index b37aa025d..8bd423b45 100644 --- a/cluster-applications/060-custom-sa/templates/04-postsync-update-sm_Job.yaml +++ b/cluster-applications/060-custom-sa/templates/04-postsync-update-sm_Job.yaml @@ -9,7 +9,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/cluster-applications/200-cluster-promotion/templates/02-cluster-verify_Job.yaml b/cluster-applications/200-cluster-promotion/templates/02-cluster-verify_Job.yaml index 86c727ea0..a1aa6cece 100644 --- a/cluster-applications/200-cluster-promotion/templates/02-cluster-verify_Job.yaml +++ b/cluster-applications/200-cluster-promotion/templates/02-cluster-verify_Job.yaml @@ -7,7 +7,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/cluster-applications/200-cluster-promotion/templates/03-cluster-promoter_Job.yaml b/cluster-applications/200-cluster-promotion/templates/03-cluster-promoter_Job.yaml index 22dabeb22..d5cf5275c 100644 --- a/cluster-applications/200-cluster-promotion/templates/03-cluster-promoter_Job.yaml +++ b/cluster-applications/200-cluster-promotion/templates/03-cluster-promoter_Job.yaml @@ -7,7 +7,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-aws-docdb-add-user_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-aws-docdb-add-user_Job.yaml index 8a5fb0e88..fd5fe302d 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/00-aws-docdb-add-user_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/00-aws-docdb-add-user_Job.yaml @@ -12,7 +12,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml index 5c95dbc77..31498e0ca 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/00-preinstall-mas-rbac_Job.yaml @@ -14,7 +14,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:f143774068b169f3d69571887ed2173c3bb2f586b6f09151218a327fe3a6ee87" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/010-ibm-sync-jobs/templates/01-ibm-mas_suite_certs_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/01-ibm-mas_suite_certs_Job.yaml index f7d6ea357..43dc47375 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/01-ibm-mas_suite_certs_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/01-ibm-mas_suite_certs_Job.yaml @@ -11,7 +11,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/010-ibm-sync-jobs/templates/01-ibm-mas_suite_dns_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/01-ibm-mas_suite_dns_Job.yaml index 22ad19b1b..7800a8b04 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/01-ibm-mas_suite_dns_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/01-ibm-mas_suite_dns_Job.yaml @@ -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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/010-ibm-sync-jobs/templates/PostDelete-aws-docdb-remove-user_Job.yaml b/instance-applications/010-ibm-sync-jobs/templates/PostDelete-aws-docdb-remove-user_Job.yaml index 26daebe54..4e5bf48a6 100644 --- a/instance-applications/010-ibm-sync-jobs/templates/PostDelete-aws-docdb-remove-user_Job.yaml +++ b/instance-applications/010-ibm-sync-jobs/templates/PostDelete-aws-docdb-remove-user_Job.yaml @@ -8,7 +8,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} # Deletes user "masinst_${MAS_INSTANCE_ID}" from docdb an deletes the acc/cluster/instance/mongo#password secret from AWS SM diff --git a/instance-applications/100-ibm-sls/templates/07-postsync-update-sm_Job.yaml b/instance-applications/100-ibm-sls/templates/07-postsync-update-sm_Job.yaml index 9aa3346eb..27817ebf7 100644 --- a/instance-applications/100-ibm-sls/templates/07-postsync-update-sm_Job.yaml +++ b/instance-applications/100-ibm-sls/templates/07-postsync-update-sm_Job.yaml @@ -9,7 +9,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/101-ibm-sync-jobs-cp4d/templates/02-ibm-cp4d-presync.yaml b/instance-applications/101-ibm-sync-jobs-cp4d/templates/02-ibm-cp4d-presync.yaml index e22c30dd5..255ef3f2e 100644 --- a/instance-applications/101-ibm-sync-jobs-cp4d/templates/02-ibm-cp4d-presync.yaml +++ b/instance-applications/101-ibm-sync-jobs-cp4d/templates/02-ibm-cp4d-presync.yaml @@ -9,7 +9,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/110-ibm-cp4d-operators/templates/04-ibm-cp4d_prereqs_ops.yaml b/instance-applications/110-ibm-cp4d-operators/templates/04-ibm-cp4d_prereqs_ops.yaml index 8de892577..dd75f4bbb 100644 --- a/instance-applications/110-ibm-cp4d-operators/templates/04-ibm-cp4d_prereqs_ops.yaml +++ b/instance-applications/110-ibm-cp4d-operators/templates/04-ibm-cp4d_prereqs_ops.yaml @@ -7,7 +7,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/110-ibm-cp4d-operators/templates/04-ibm-cp4d_upg_cleanup.yaml b/instance-applications/110-ibm-cp4d-operators/templates/04-ibm-cp4d_upg_cleanup.yaml index 24fdd8f34..a16def5b1 100644 --- a/instance-applications/110-ibm-cp4d-operators/templates/04-ibm-cp4d_upg_cleanup.yaml +++ b/instance-applications/110-ibm-cp4d-operators/templates/04-ibm-cp4d_upg_cleanup.yaml @@ -7,7 +7,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/110-ibm-cp4d/templates/03-ibm-cp4d-mcs_patch_sa.yaml b/instance-applications/110-ibm-cp4d/templates/03-ibm-cp4d-mcs_patch_sa.yaml index f1ec13a49..707c13b8b 100644 --- a/instance-applications/110-ibm-cp4d/templates/03-ibm-cp4d-mcs_patch_sa.yaml +++ b/instance-applications/110-ibm-cp4d/templates/03-ibm-cp4d-mcs_patch_sa.yaml @@ -14,7 +14,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/110-ibm-cp4d/templates/07-ibm-cp4d_patch_zenservice.yaml b/instance-applications/110-ibm-cp4d/templates/07-ibm-cp4d_patch_zenservice.yaml index 0ae4ac575..f35bc7f2a 100644 --- a/instance-applications/110-ibm-cp4d/templates/07-ibm-cp4d_patch_zenservice.yaml +++ b/instance-applications/110-ibm-cp4d/templates/07-ibm-cp4d_patch_zenservice.yaml @@ -8,7 +8,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/110-ibm-cp4d/templates/08-ibm-cp4d-post-verify.yaml b/instance-applications/110-ibm-cp4d/templates/08-ibm-cp4d-post-verify.yaml index 1ad354fb0..4956e4416 100644 --- a/instance-applications/110-ibm-cp4d/templates/08-ibm-cp4d-post-verify.yaml +++ b/instance-applications/110-ibm-cp4d/templates/08-ibm-cp4d-post-verify.yaml @@ -7,7 +7,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/110-ibm-cp4d/templates/09-ibm-cp4d_services_base.yaml b/instance-applications/110-ibm-cp4d/templates/09-ibm-cp4d_services_base.yaml index 1356730e0..720349abd 100644 --- a/instance-applications/110-ibm-cp4d/templates/09-ibm-cp4d_services_base.yaml +++ b/instance-applications/110-ibm-cp4d/templates/09-ibm-cp4d_services_base.yaml @@ -7,7 +7,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/113-ibm-aiservice/templates/07-postsync-migration-job.yaml b/instance-applications/113-ibm-aiservice/templates/07-postsync-migration-job.yaml index 840d43008..c6a447bf6 100644 --- a/instance-applications/113-ibm-aiservice/templates/07-postsync-migration-job.yaml +++ b/instance-applications/113-ibm-aiservice/templates/07-postsync-migration-job.yaml @@ -1,7 +1,7 @@ {{- if hasPrefix "9.2." (toString .Values.aiservice_channel) }} {{- $_job_name_prefix := "postsync-aiservice-migration" }} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- $_job_config_values := omit .Values "junitreporter" }} {{- $_job_version := "v1" }} {{- $_job_hash := print ($_job_config_values | toYaml) $_cli_image_digest $_job_version | adler32sum }} diff --git a/instance-applications/115-ibm-aiservice-tenant/templates/00-presync-migration-job.yaml b/instance-applications/115-ibm-aiservice-tenant/templates/00-presync-migration-job.yaml index 9582d846f..b3d36134a 100644 --- a/instance-applications/115-ibm-aiservice-tenant/templates/00-presync-migration-job.yaml +++ b/instance-applications/115-ibm-aiservice-tenant/templates/00-presync-migration-job.yaml @@ -8,7 +8,7 @@ {{- if hasPrefix "9.2." (toString .Values.catalog_channel) }} {{- $_job_name_prefix := "presync-tenant-migration" }} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- $_job_config_values := omit .Values "junitreporter" }} {{- $_job_version := "v1" }} {{- $_job_hash := print ($_job_config_values | toYaml) $_cli_image_digest $_job_version | adler32sum }} diff --git a/instance-applications/115-ibm-aiservice-tenant/templates/03-tenant-migration-job.yaml b/instance-applications/115-ibm-aiservice-tenant/templates/03-tenant-migration-job.yaml index 675d39cd2..ee07eab18 100644 --- a/instance-applications/115-ibm-aiservice-tenant/templates/03-tenant-migration-job.yaml +++ b/instance-applications/115-ibm-aiservice-tenant/templates/03-tenant-migration-job.yaml @@ -1,7 +1,7 @@ {{- if hasPrefix "9.2." (toString .Values.catalog_channel) }} {{- $_job_name_prefix := "tenant-migration" }} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- $_job_config_values := omit .Values "junitreporter" }} {{- $_job_version := "v1" }} {{- $_job_hash := print ($_job_config_values | toYaml) $_cli_image_digest $_job_version | adler32sum }} diff --git a/instance-applications/115-ibm-aiservice-tenant/templates/06-aiservice-km-s3-secret.yaml b/instance-applications/115-ibm-aiservice-tenant/templates/06-aiservice-km-s3-secret.yaml index d385a16de..4e824d5cc 100644 --- a/instance-applications/115-ibm-aiservice-tenant/templates/06-aiservice-km-s3-secret.yaml +++ b/instance-applications/115-ibm-aiservice-tenant/templates/06-aiservice-km-s3-secret.yaml @@ -1,6 +1,6 @@ {{- if .Values.application_admin_role }} {{- $_job_name_prefix := "presync-copy-ai-secrets" }} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- $_job_config_values := omit .Values "junitreporter" }} {{- $_job_version := "v5" }} {{- $_job_hash := print ($_job_config_values | toYaml) $_cli_image_digest $_job_version | adler32sum }} diff --git a/instance-applications/115-ibm-aiservice-tenant/templates/08-aiservice-postsyncjob.yaml b/instance-applications/115-ibm-aiservice-tenant/templates/08-aiservice-postsyncjob.yaml index ab128707c..57b7b0dfd 100644 --- a/instance-applications/115-ibm-aiservice-tenant/templates/08-aiservice-postsyncjob.yaml +++ b/instance-applications/115-ibm-aiservice-tenant/templates/08-aiservice-postsyncjob.yaml @@ -7,7 +7,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }}{{- /* +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }}{{- /* A dict of values that influence the behaviour of the job in some way. Any changes to values in this dict will trigger a rerun of the job. Since jobs must be idemopotent, it's generally safe to pass in values here that are not diff --git a/instance-applications/115-ibm-aiservice-tenant/templates/08-postsync-migration-job.yaml b/instance-applications/115-ibm-aiservice-tenant/templates/08-postsync-migration-job.yaml index 2ef38ac91..2dfd384b7 100644 --- a/instance-applications/115-ibm-aiservice-tenant/templates/08-postsync-migration-job.yaml +++ b/instance-applications/115-ibm-aiservice-tenant/templates/08-postsync-migration-job.yaml @@ -1,7 +1,7 @@ {{- if hasPrefix "9.2." (toString .Values.catalog_channel) }} {{- $_job_name_prefix := "postsync-tenant-migration" }} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- $_job_config_values := omit .Values "junitreporter" }} {{- $_job_version := "v1" }} {{- $_job_hash := print ($_job_config_values | toYaml) $_cli_image_digest $_job_version | adler32sum }} diff --git a/instance-applications/120-ibm-db2u-database/templates/00-presync-await-crd_Job.yaml b/instance-applications/120-ibm-db2u-database/templates/00-presync-await-crd_Job.yaml index c43ae4491..8834c7c3e 100644 --- a/instance-applications/120-ibm-db2u-database/templates/00-presync-await-crd_Job.yaml +++ b/instance-applications/120-ibm-db2u-database/templates/00-presync-await-crd_Job.yaml @@ -2,7 +2,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} --- # Service account that is authorized to read k8s secrets (needed by the job) diff --git a/instance-applications/120-ibm-db2u-database/templates/04-db2u-Backup_Cron.yaml b/instance-applications/120-ibm-db2u-database/templates/04-db2u-Backup_Cron.yaml index 85d92c06c..8d1d5475c 100644 --- a/instance-applications/120-ibm-db2u-database/templates/04-db2u-Backup_Cron.yaml +++ b/instance-applications/120-ibm-db2u-database/templates/04-db2u-Backup_Cron.yaml @@ -4,7 +4,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} #apiVersion: batch/v1beta1 kind: CronJob diff --git a/instance-applications/120-ibm-db2u-database/templates/07-postsync-setup-db2_Job.yaml b/instance-applications/120-ibm-db2u-database/templates/07-postsync-setup-db2_Job.yaml index 1e453307b..c3e26073b 100644 --- a/instance-applications/120-ibm-db2u-database/templates/07-postsync-setup-db2_Job.yaml +++ b/instance-applications/120-ibm-db2u-database/templates/07-postsync-setup-db2_Job.yaml @@ -18,7 +18,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/120-ibm-db2u-database/templates/10-postsync-setup-hadr.yaml b/instance-applications/120-ibm-db2u-database/templates/10-postsync-setup-hadr.yaml index 5564cad27..426dfc713 100644 --- a/instance-applications/120-ibm-db2u-database/templates/10-postsync-setup-hadr.yaml +++ b/instance-applications/120-ibm-db2u-database/templates/10-postsync-setup-hadr.yaml @@ -11,7 +11,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/120-ibm-dbs-rds-database/templates/00-presync-create-database.yaml b/instance-applications/120-ibm-dbs-rds-database/templates/00-presync-create-database.yaml index 210443a8c..3d44d2cb0 100644 --- a/instance-applications/120-ibm-dbs-rds-database/templates/00-presync-create-database.yaml +++ b/instance-applications/120-ibm-dbs-rds-database/templates/00-presync-create-database.yaml @@ -1,6 +1,6 @@ {{- if .Values.application_admin_role }} {{- $_job_name_prefix := "dbs-rds-presync-create-db" }} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- $_job_config_values := omit .Values "junitreporter" }} {{- $_job_version := "v1" }} {{- $_job_hash := print ($_job_config_values | toYaml) $_cli_image_digest $_job_version | adler32sum }} diff --git a/instance-applications/120-ibm-dbs-rds-database/templates/01-dbs-rds-postsync-setup.yaml b/instance-applications/120-ibm-dbs-rds-database/templates/01-dbs-rds-postsync-setup.yaml index 6a1240b8f..6f5d68aa5 100644 --- a/instance-applications/120-ibm-dbs-rds-database/templates/01-dbs-rds-postsync-setup.yaml +++ b/instance-applications/120-ibm-dbs-rds-database/templates/01-dbs-rds-postsync-setup.yaml @@ -8,7 +8,7 @@ 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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/120-ibm-dbs-rds-database/templates/03-backup-cronjobs.yaml b/instance-applications/120-ibm-dbs-rds-database/templates/03-backup-cronjobs.yaml index 366359f45..4766c2e01 100644 --- a/instance-applications/120-ibm-dbs-rds-database/templates/03-backup-cronjobs.yaml +++ b/instance-applications/120-ibm-dbs-rds-database/templates/03-backup-cronjobs.yaml @@ -2,7 +2,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} --- # Full Backup CronJob (Sundays at 2 AM) diff --git a/instance-applications/120-ibm-spark/templates/02-ibm-spark-control-plane.yaml b/instance-applications/120-ibm-spark/templates/02-ibm-spark-control-plane.yaml index a4ab9c368..72ec485af 100644 --- a/instance-applications/120-ibm-spark/templates/02-ibm-spark-control-plane.yaml +++ b/instance-applications/120-ibm-spark/templates/02-ibm-spark-control-plane.yaml @@ -7,7 +7,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/120-ibm-wsl/templates/02-ibm-wsl-post-verify.yaml b/instance-applications/120-ibm-wsl/templates/02-ibm-wsl-post-verify.yaml index 72f46caab..aff54cc93 100644 --- a/instance-applications/120-ibm-wsl/templates/02-ibm-wsl-post-verify.yaml +++ b/instance-applications/120-ibm-wsl/templates/02-ibm-wsl-post-verify.yaml @@ -7,7 +7,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/121-ibm-post-sync-job-cp4d-services/templates/01-cpd-service-post-ops.yaml b/instance-applications/121-ibm-post-sync-job-cp4d-services/templates/01-cpd-service-post-ops.yaml index dbbb55c4e..18641dc01 100644 --- a/instance-applications/121-ibm-post-sync-job-cp4d-services/templates/01-cpd-service-post-ops.yaml +++ b/instance-applications/121-ibm-post-sync-job-cp4d-services/templates/01-cpd-service-post-ops.yaml @@ -8,7 +8,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/130-ibm-jdbc-config/templates/00-presync-create-db2-rds-user-Job.yaml b/instance-applications/130-ibm-jdbc-config/templates/00-presync-create-db2-rds-user-Job.yaml index 54c080b5a..12b680096 100644 --- a/instance-applications/130-ibm-jdbc-config/templates/00-presync-create-db2-rds-user-Job.yaml +++ b/instance-applications/130-ibm-jdbc-config/templates/00-presync-create-db2-rds-user-Job.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} - {{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} + {{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $ns := printf "mas-%s-core" .Values.instance_id }} {{ $prefix := printf "pre-jdbc-create-user-%s" .Values.mas_config_name }} diff --git a/instance-applications/130-ibm-jdbc-config/templates/00-presync-create-db2-user_Job.yaml b/instance-applications/130-ibm-jdbc-config/templates/00-presync-create-db2-user_Job.yaml index 563eef04d..5a4fc9c72 100644 --- a/instance-applications/130-ibm-jdbc-config/templates/00-presync-create-db2-user_Job.yaml +++ b/instance-applications/130-ibm-jdbc-config/templates/00-presync-create-db2-user_Job.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $ns := printf "mas-%s-core" .Values.instance_id }} {{ $prefix := printf "pre-jdbc-usr-%s" .Values.mas_config_name }} diff --git a/instance-applications/130-ibm-jdbc-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-jdbc-config/templates/postdelete-delete-cr.yaml index 1cbe65acd..3186e0f50 100644 --- a/instance-applications/130-ibm-jdbc-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-jdbc-config/templates/postdelete-delete-cr.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $cr_name := .Values.mas_config_name }} {{ $cr_kind := .Values.mas_config_kind }} diff --git a/instance-applications/130-ibm-jdbc-config/templates/postdelete-delete-db2-user_Job.yaml b/instance-applications/130-ibm-jdbc-config/templates/postdelete-delete-db2-user_Job.yaml index 0eee16ec0..2c4d18ed4 100644 --- a/instance-applications/130-ibm-jdbc-config/templates/postdelete-delete-db2-user_Job.yaml +++ b/instance-applications/130-ibm-jdbc-config/templates/postdelete-delete-db2-user_Job.yaml @@ -5,7 +5,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $ns := printf "mas-%s-core" .Values.instance_id }} {{ $prefix := printf "post-jdbc-usr-%s" .Values.mas_config_name }} diff --git a/instance-applications/130-ibm-kafka-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-kafka-config/templates/postdelete-delete-cr.yaml index ff838fa87..df9aff193 100644 --- a/instance-applications/130-ibm-kafka-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-kafka-config/templates/postdelete-delete-cr.yaml @@ -22,7 +22,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} --- apiVersion: batch/v1 diff --git a/instance-applications/130-ibm-mas-aicfg-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-mas-aicfg-config/templates/postdelete-delete-cr.yaml index c6813ee3e..c13b0361c 100644 --- a/instance-applications/130-ibm-mas-aicfg-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-mas-aicfg-config/templates/postdelete-delete-cr.yaml @@ -1,7 +1,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} --- apiVersion: batch/v1 diff --git a/instance-applications/130-ibm-mas-app-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-mas-app-config/templates/postdelete-delete-cr.yaml index 54b2235a4..acb1b4997 100644 --- a/instance-applications/130-ibm-mas-app-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-mas-app-config/templates/postdelete-delete-cr.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $cr_name := .Values.mas_config_name }} {{ $cr_kind := .Values.mas_config_kind }} diff --git a/instance-applications/130-ibm-mas-bas-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-mas-bas-config/templates/postdelete-delete-cr.yaml index 599fe0858..b95d0a900 100644 --- a/instance-applications/130-ibm-mas-bas-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-mas-bas-config/templates/postdelete-delete-cr.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $cr_name := .Values.mas_config_name }} {{ $cr_kind := .Values.mas_config_kind }} diff --git a/instance-applications/130-ibm-mas-idp-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-mas-idp-config/templates/postdelete-delete-cr.yaml index 599fe0858..b95d0a900 100644 --- a/instance-applications/130-ibm-mas-idp-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-mas-idp-config/templates/postdelete-delete-cr.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $cr_name := .Values.mas_config_name }} {{ $cr_kind := .Values.mas_config_kind }} diff --git a/instance-applications/130-ibm-mas-mongo-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-mas-mongo-config/templates/postdelete-delete-cr.yaml index 40a6ef506..25e0532e4 100644 --- a/instance-applications/130-ibm-mas-mongo-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-mas-mongo-config/templates/postdelete-delete-cr.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $cr_name := .Values.mas_config_name }} {{ $cr_kind := .Values.mas_config_kind }} diff --git a/instance-applications/130-ibm-mas-sls-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-mas-sls-config/templates/postdelete-delete-cr.yaml index 599fe0858..b95d0a900 100644 --- a/instance-applications/130-ibm-mas-sls-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-mas-sls-config/templates/postdelete-delete-cr.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $cr_name := .Values.mas_config_name }} {{ $cr_kind := .Values.mas_config_kind }} diff --git a/instance-applications/130-ibm-mas-smtp-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-mas-smtp-config/templates/postdelete-delete-cr.yaml index 599fe0858..b95d0a900 100644 --- a/instance-applications/130-ibm-mas-smtp-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-mas-smtp-config/templates/postdelete-delete-cr.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $cr_name := .Values.mas_config_name }} {{ $cr_kind := .Values.mas_config_kind }} diff --git a/instance-applications/130-ibm-mas-suite/templates/05-postsync-add-label_Job.yaml b/instance-applications/130-ibm-mas-suite/templates/05-postsync-add-label_Job.yaml index 8b341bfc9..b7f4123a0 100644 --- a/instance-applications/130-ibm-mas-suite/templates/05-postsync-add-label_Job.yaml +++ b/instance-applications/130-ibm-mas-suite/templates/05-postsync-add-label_Job.yaml @@ -8,7 +8,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/130-ibm-mas-suite/templates/06-postsync-configtool-oidc.yaml b/instance-applications/130-ibm-mas-suite/templates/06-postsync-configtool-oidc.yaml index e1a9adc4d..bce30d10a 100644 --- a/instance-applications/130-ibm-mas-suite/templates/06-postsync-configtool-oidc.yaml +++ b/instance-applications/130-ibm-mas-suite/templates/06-postsync-configtool-oidc.yaml @@ -11,7 +11,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/130-ibm-mas-suite/templates/07-postsync-set_welcome_messsage_Job.yaml b/instance-applications/130-ibm-mas-suite/templates/07-postsync-set_welcome_messsage_Job.yaml index cbefe5883..f7b36616e 100644 --- a/instance-applications/130-ibm-mas-suite/templates/07-postsync-set_welcome_messsage_Job.yaml +++ b/instance-applications/130-ibm-mas-suite/templates/07-postsync-set_welcome_messsage_Job.yaml @@ -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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/130-ibm-objectstorage-config/templates/postdelete-delete-cr.yaml b/instance-applications/130-ibm-objectstorage-config/templates/postdelete-delete-cr.yaml index 599fe0858..b95d0a900 100644 --- a/instance-applications/130-ibm-objectstorage-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/130-ibm-objectstorage-config/templates/postdelete-delete-cr.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $cr_name := .Values.mas_config_name }} {{ $cr_kind := .Values.mas_config_kind }} diff --git a/instance-applications/220-ibm-mas-workspace/templates/05-postsync-add-label_Job.yaml b/instance-applications/220-ibm-mas-workspace/templates/05-postsync-add-label_Job.yaml index a60314d0a..06d7840ec 100644 --- a/instance-applications/220-ibm-mas-workspace/templates/05-postsync-add-label_Job.yaml +++ b/instance-applications/220-ibm-mas-workspace/templates/05-postsync-add-label_Job.yaml @@ -4,7 +4,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} --- # Permit outbound communication by the Job pods diff --git a/instance-applications/500-540-ibm-mas-suite-app-install/templates/00-presync-add-mvi-scc_Job.yaml b/instance-applications/500-540-ibm-mas-suite-app-install/templates/00-presync-add-mvi-scc_Job.yaml index bfc102eaa..10502ac74 100644 --- a/instance-applications/500-540-ibm-mas-suite-app-install/templates/00-presync-add-mvi-scc_Job.yaml +++ b/instance-applications/500-540-ibm-mas-suite-app-install/templates/00-presync-add-mvi-scc_Job.yaml @@ -7,7 +7,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $ns := .Values.mas_app_namespace }} diff --git a/instance-applications/500-540-ibm-mas-suite-app-install/templates/06-postsync-add-mvi-scc_Job.yaml b/instance-applications/500-540-ibm-mas-suite-app-install/templates/06-postsync-add-mvi-scc_Job.yaml index 1bfdb4afe..ee9a32f63 100644 --- a/instance-applications/500-540-ibm-mas-suite-app-install/templates/06-postsync-add-mvi-scc_Job.yaml +++ b/instance-applications/500-540-ibm-mas-suite-app-install/templates/06-postsync-add-mvi-scc_Job.yaml @@ -7,7 +7,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $ns := .Values.mas_app_namespace }} diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/02-ibm-manage-update_Job.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/02-ibm-manage-update_Job.yaml index 7cf7c5573..34769b89a 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/02-ibm-manage-update_Job.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/02-ibm-manage-update_Job.yaml @@ -6,7 +6,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $ns := .Values.mas_app_namespace }} {{ $prefix := printf "%s-manage-update" .Values.mas_workspace_id}} diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-add-label_Job.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-add-label_Job.yaml index ec30debf7..dd4912557 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-add-label_Job.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-add-label_Job.yaml @@ -1,7 +1,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $ns := .Values.mas_app_namespace }} {{ $job_label := "mas-app-route-patch" }} diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-manage-sanity.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-manage-sanity.yaml index 5430eed01..0f7ba397a 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-manage-sanity.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-manage-sanity.yaml @@ -5,7 +5,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} # A sanity test is one that can be disruptive i.e. it can create new users, call authenticated apis, creates resources # in the application. This type of test should only be run in a downstream environment such as a dev or staging env diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-manage-verify.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-manage-verify.yaml index 5a39aee3b..b737011fe 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-manage-verify.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-manage-verify.yaml @@ -4,7 +4,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} # A verify test is one that is non disruptive i.e. it won't create new users, i won't call authenticated apis, and it won't creates resources # in the application. This type of test is run on every environment and allows a layer of verification of the app diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-maximoit-sanity.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-maximoit-sanity.yaml index 8e2d9478e..2d12a1211 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-maximoit-sanity.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-maximoit-sanity.yaml @@ -6,7 +6,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} # A sanity test is one that can be disruptive i.e. it can create new users, call authenticated apis, creates resources # in the application. This type of test should only be run in a downstream environment such as a dev or staging env diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-maximoit-verify.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-maximoit-verify.yaml index 48ef15a5a..d92314c08 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-maximoit-verify.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-maximoit-verify.yaml @@ -5,7 +5,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} # A verify test is one that is non disruptive i.e. it won't create new users, i won't call authenticated apis, and it won't creates resources # in the application. This type of test is run on every environment and allows a layer of verification of the app diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-mvi-sanity.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-mvi-sanity.yaml index d882e2722..fb4de4702 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-mvi-sanity.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-mvi-sanity.yaml @@ -4,7 +4,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $ns := .Values.mas_app_namespace }} {{ $np_name := "postsync-sanity-mvi-np" }} diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-mvi-verify.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-mvi-verify.yaml index 78a299703..c7d8211eb 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-mvi-verify.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/04-postsync-mvi-verify.yaml @@ -4,7 +4,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $ns := .Values.mas_app_namespace }} diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/700-702-postsync-db2-manage.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/700-702-postsync-db2-manage.yaml index 5cb2fabea..1a0116773 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/700-702-postsync-db2-manage.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/700-702-postsync-db2-manage.yaml @@ -87,7 +87,7 @@ will take care of differentiating the jobs. 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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/instance-applications/510-550-ibm-mas-suite-app-config/templates/703-postsync-rds-app-roles.yaml b/instance-applications/510-550-ibm-mas-suite-app-config/templates/703-postsync-rds-app-roles.yaml index 55bddca05..2d09254b7 100644 --- a/instance-applications/510-550-ibm-mas-suite-app-config/templates/703-postsync-rds-app-roles.yaml +++ b/instance-applications/510-550-ibm-mas-suite-app-config/templates/703-postsync-rds-app-roles.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $app_ns := .Values.mas_app_namespace }} {{ $np_name := "postsync-app-rds-roles-np" }} diff --git a/instance-applications/550-ibm-mas-addons-config/templates/postdelete-delete-cr.yaml b/instance-applications/550-ibm-mas-addons-config/templates/postdelete-delete-cr.yaml index 25cfd7242..c12b695b1 100644 --- a/instance-applications/550-ibm-mas-addons-config/templates/postdelete-delete-cr.yaml +++ b/instance-applications/550-ibm-mas-addons-config/templates/postdelete-delete-cr.yaml @@ -4,7 +4,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- $_addon_type := "additional-resources" }} {{- $_addon_cr_name := printf "%s-addons-%s" .Values.instance_id $_addon_type }} diff --git a/instance-applications/600-ibm-post-sync-jobs/templates/001-ibm-create-initial-users.yaml b/instance-applications/600-ibm-post-sync-jobs/templates/001-ibm-create-initial-users.yaml index d05c5727f..bbec86086 100644 --- a/instance-applications/600-ibm-post-sync-jobs/templates/001-ibm-create-initial-users.yaml +++ b/instance-applications/600-ibm-post-sync-jobs/templates/001-ibm-create-initial-users.yaml @@ -13,7 +13,7 @@ Use the build/bin/set-cli-image-tag.sh script to update this value across all ch Included in $_job_hash (see below). 13.22.1-amd64 - includes mas-devops-create-initial-users script from https://github.com/ibm-mas/python-devops/pull/66 */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/sls-applications/100-ibm-sls/templates/07-ibm-sls-dns_job.yaml b/sls-applications/100-ibm-sls/templates/07-ibm-sls-dns_job.yaml index 0119bee75..12eecf138 100644 --- a/sls-applications/100-ibm-sls/templates/07-ibm-sls-dns_job.yaml +++ b/sls-applications/100-ibm-sls/templates/07-ibm-sls-dns_job.yaml @@ -1,5 +1,5 @@ -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $aws_secret := "aws"}} {{- $_job_name_prefix := "ibm-sls-dns" }} {{- $_job_cleanup_group := cat $_job_name_prefix | sha1sum }} diff --git a/sls-applications/100-ibm-sls/templates/08-postsync-update-sm_Job.yaml b/sls-applications/100-ibm-sls/templates/08-postsync-update-sm_Job.yaml index 5649df68f..2c6eccf81 100644 --- a/sls-applications/100-ibm-sls/templates/08-postsync-update-sm_Job.yaml +++ b/sls-applications/100-ibm-sls/templates/08-postsync-update-sm_Job.yaml @@ -9,7 +9,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:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{- /* A dict of values that influence the behaviour of the job in some way. diff --git a/sub-charts/junitreporter/templates/00-presync-report-starter.yaml b/sub-charts/junitreporter/templates/00-presync-report-starter.yaml index 8e23f95de..c43fd9585 100644 --- a/sub-charts/junitreporter/templates/00-presync-report-starter.yaml +++ b/sub-charts/junitreporter/templates/00-presync-report-starter.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $prefix := printf "pre-jreporter-%s" .Values.reporter_name }} diff --git a/sub-charts/junitreporter/templates/10-postsync-report-starter.yaml b/sub-charts/junitreporter/templates/10-postsync-report-starter.yaml index f7b401d6b..83ac816d6 100644 --- a/sub-charts/junitreporter/templates/10-postsync-report-starter.yaml +++ b/sub-charts/junitreporter/templates/10-postsync-report-starter.yaml @@ -3,7 +3,7 @@ {{- /* Use the build/bin/set-cli-image-digest.sh script to update this value across all charts. */}} -{{- $_cli_image_digest := "sha256:53c53e53f5e7615fe219375d2600ba4601477bec392eebf5580ac0d518fe065c" }} +{{- $_cli_image_digest := "sha256:14c852062a8c6149820d9aa7b8315d83f25bb29172b0f318e4fe10af613533f3" }} {{ $preprefix := printf "pre-jreporter-%s" .Values.reporter_name }} {{ $time_cm := printf "%s-synctime" $preprefix }}