-
Bug
-
Resolution: Done
-
Minor
-
Pipelines 1.6, Pipelines 1.5.2
-
1
-
False
-
False
-
-
Pipelines Sprint 213, Pipelines Sprint 214, Pipelines Sprint 215, Pipelines Sprint 216, Pipelines Sprint 217, Pipelines Sprint 218, Pipelines Sprint 219, Pipelines Sprint 220, Pipelines Sprint 221
In all the TaskRun pods, we get events like -
Warning FailedMount 76s (x3 over 77s) kubelet MountVolume.SetUp failed for volume "config-service-cabundle-volume" : object "default"/"config-service-cabundle" not registered
To reproduce, create simple Task and TaskRun like the following:
apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: echo-hello-world
spec:
steps:
- name: echo
image: ubuntu
command:
- echo
args:
- "hello world"
apiVersion: tekton.dev/v1beta1 kind: TaskRun metadata: name: echo-hello-world-task-run spec: taskRef: name: echo-hello-world
and then do an `oc describe` on the TaskRun pod.
Preliminary debugging shows that this issue exists on both, 1.5.2 and 1.6.0 and seems to be triggering only on OCP 4.9. This needs to be verified.