我正在尝试使用需要访问多个PersistentVolumeClaim
工作区的任务运行 Tekton 管道。当我运行管道时,任务失败并显示消息"more than one PersistentVolumeClaim is bound"
。据我所知,没有什么可以禁止在同一个任务中绑定多个 PersistentVolumeClaim,那么为什么我会收到这个错误,我该如何解决呢?
问问题
84 次
1 回答
0
您是否尝试过禁用 Tekton 亲和助手?
$ kubectl edit configmap feature-flags -n tekton-pipelines
寻找disable-affinity-assistant
。将其值更改为true
。
看:
另外:确保您的 Tekton 堆栈是相对最新的,因为在 0.14.3 中可能存在一些回归(未确认)。
于 2021-11-28T18:49:14.230 回答