Tekton 0.9.0 更新
翻译整理自 What’s New in Tekton 0.9 功能及Bug修复 脚本模式 以前如果要在容器里运行个简单的 bash 脚本, 需要这么写: - name: hello image: ubuntu command: ['bash'] args: - -c - | set -ex echo "hello" 在 0.9 之后, 可以更加简单, 不需要再写command 和讨厌的-c. - name: hello image: ubuntu script: | #!