-
Bug
-
Resolution: Unresolved
-
Critical
-
None
-
Jenkins 2.387.3
kubernetes-plugin 3937.vd7b_82db_e347b_
When configuring cloud node through jenkins, in the pod template section there is no option to provide tolerations, I'm trying to use "Raw YAML for the Pod" with override option but is not overriding with my definition
this is what I'm sending to be overwritten
spec:
tolerations:
- key: com.docker.ucp.manager
operator: Exists
but after creating the pod is not getting the correct tolerations, logs are attached in incident, if I manually modify the pod and add the toleration it works
It works if i pass something after slash, example:
spec:
tolerations:
- key: com.docker.ucp.manager/test
operator: Exists
it should work if i dont pass an slash also
spec:
tolerations:
- key: com.docker.ucp.manager
operator: Exists