2024-01-25 09:01:48 +01:00
|
|
|
### Accès au Dashboard
|
|
|
|
[Doc Tekton](https://tekton.dev/docs/dashboard/install/)
|
|
|
|
|
|
|
|
On crée un port-forward pour accéder au dashboard
|
|
|
|
|
|
|
|
```
|
|
|
|
kubectl --namespace tekton-pipelines port-forward svc/tekton-dashboard 9097:9097
|
|
|
|
```
|
|
|
|
|
2024-01-25 09:02:59 +01:00
|
|
|
Accéder au dashboard : http://localhost:9097
|
|
|
|
|
2024-01-25 09:01:48 +01:00
|
|
|
### Lancement du pipeline
|
|
|
|
|
|
|
|
```
|
|
|
|
kubectl create -f kustomization/base/tekton/pipeline/pipelinerun.yaml
|
|
|
|
```
|
|
|
|
|
|
|
|
### Lister et voir les logs des pipelines
|
|
|
|
|
|
|
|
```
|
|
|
|
tkn pipelinerun list
|
|
|
|
tkn pipelinerun logs clone-read-run-dqwcx -f
|
|
|
|
```
|