Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[patch] Do not re-enable TLS in DB2DB postsync job #187

Merged
merged 2 commits into from
Aug 30, 2024
Merged
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 @@ -95,7 +95,7 @@ kind: Job
metadata:
# Suffix the Job name with a hash of all chart values
# This is to ensure that ArgoCD will delete and recreate the job if (and only if) anything changes in the DB2 config
name: "postsync-setup-db2-{{ .Values.db2_instance_name }}-v2-{{ .Values | toYaml | adler32sum }}"
name: "postsync-setup-db2-{{ .Values.db2_instance_name }}-v3-{{ .Values | toYaml | adler32sum }}"
namespace: "{{ .Values.db2_namespace }}"
annotations:
argocd.argoproj.io/sync-wave: "129"
Expand Down Expand Up @@ -470,7 +470,7 @@ spec:
[ \$rc -ne 0 ] && exit \$rc

echo "backupdb.sh: db2set comms manager"
db2set DB2COMM=TCPIP,SSL
db2set DB2COMM=SSL
rc=\$?
[ \$rc -ne 0 ] && exit \$rc

Expand Down
Loading