Is there a way to use this UI way of building pipelins and connecting tasks without openshift? I believe that native tekton dashboard did not support that feature. BTW are those pipelines and tasks persisted, is there a option to push them as code directly to some git repo?
@ellathaiyumpesuvom25668 ай бұрын
if its a private repo how we can pass the credentials?
@CloudNativeDevelopment8 ай бұрын
Great Question! It was a little out side of the scope of what we wanted to present with this video but it is actually not terribly difficult to do. You need to create a Kubernetes Secret containing the authentication information for your git repository (either basic auth or SSH) then associate that secret with the ServiceAccount running your pipeline or specific task (in Openshift this will be the `pipeline` service account by default) *Specifics on how to do that can be found here:* *Openshift Pipeline Docs:* docs.openshift.com/pipelines/1.14/secure/authenticating-pipelines-using-git-secret.html#op-configuring-basic-authentication-for-git_authenticating-pipelines-using-git-secret *Tekton Docs:** tekton.dev/docs/pipelines/auth/#configuring-basic-auth-authentication-for-git
@ellathaiyumpesuvom25668 ай бұрын
@@CloudNativeDevelopment can you share it any documentation link for this?
@CloudNativeDevelopment8 ай бұрын
@@ellathaiyumpesuvom2566 Previous comment contained the documentation but it was hidden unless you hit "Show More", linking it again but let us know if there is anything more specific you were looking for. Openshift Pipeline Docs: docs.openshift.com/pipelines/1.14/secure/authenticating-pipelines-using-git-secret.html#op-configuring-basic-authentication-for-git_authenticating-pipelines-using-git-secret Tekton Docs:* tekton.dev/docs/pipelines/auth/#configuring-basic-auth-authentication-for-git
@ellathaiyumpesuvom25668 ай бұрын
@@CloudNativeDevelopment Thank you so much I didn't noticed that. My bad