cronjob の実行に関する問題に直面しています。以下はコードのスニペットです。
containers:
- name: ssm1db
image: anuragh/ubuntu:mycronjob5
imagePullPolicy: Always
command:
- "/bin/sh"
- "-c"
- "kubectl exec ssm1db-0 -- bash -c 'whoami; /db2/db2inst1/dba/jobs/dbactivate.sh -d wdp'"
例えば。以下のコードを実行できます。ここで db2inst1 は、スクリプトを実行する必要があるユーザーです。
/bin/su -c ./full_online_backup.sh - db2inst1
しかし、kubectl を使用して実行中にエラーが発生する
/bin/su: /bin/su: cannot execute binary file
command terminated with exit code 126
[root@ssm1db-0 /]#