You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2021/07/26 17:00:59 UTC

[GitHub] [camel-k] nicolaferraro commented on issue #2530: Error in OpenShift image-pull delegation on IBM Cloud

nicolaferraro commented on issue #2530:
URL: https://github.com/apache/camel-k/issues/2530#issuecomment-886870634


   Workaround is to manually create the following rolebinding:
   
   ```
   kind: RoleBinding
   apiVersion: rbac.authorization.k8s.io/v1
   metadata:
     name: camel-k-puller-#your-namespace#
     namespace: openshift-operators
   roleRef:
     apiGroup: rbac.authorization.k8s.io
     kind: ClusterRole
     name: system:image-puller
   subjects:
   - kind: ServiceAccount
     name: default
     namespace: "#your-namespace#"
   ```
   
   Replacing `#your-namespace#` with each project where you want to run integrations.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org