Tekton 错误,如何修复:执行命令时出错:fork/exec /tekton/scripts/script-2-m6dkb

Tekton error , how to fix: Error executing command: fork/exec /tekton/scripts/script-2-m6dkb

我在其中一个 tekton 步骤中遇到此错误。我该如何解决?

Error executing command: fork/exec /tekton/scripts/script-2-m6dkb: no such file or directory
---
apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
  name: build-images
spec:
  params:
    - name: person
      description: Name of person to greet
      default: John
      type: string
  steps:
    - name: build
      image: gcr.io/kaniko-project/executor:debug-v0.19.0
      command:
        - /busybox/sh
        - -c
        - echo test
    - name: say-hello
      image: gcr.io/kaniko-project/executor:debug-v0.19.0
      command:
        - /busybox/sh
      args: ['-c', 'echo Hello $(params.person)']
    - name: write-hello #Tekton thsi step fails! Error executing command: fork/exec /tekton/scripts/script-2-m6dkb: no such file or directory
      image: registry.access.redhat.com/ubi8/ubi
      script: |
              #!/user/bin/env bash
              echo Preparing greeting
              echo Hello $(params.person) > ~/hello.txt
              sleep 2
              echo Done!
---
apiVersion: tekton.dev/v1beta1
kind: TaskRun
metadata:
  name: build-images
spec:
  taskRef:
    name: build-images

在你的任务的第三个容器(write-hello)中,替换 #!/user/bin/env bash

应该是:#!/usr/bin/env bash