mse-tekton/README.md

48 lines
902 B
Markdown
Raw Normal View History

2024-01-25 09:01:48 +01:00
# MSE Tekton
CI du projet MSE
### Lancement de l'environnement
2024-03-07 15:39:20 +01:00
#### Lancer l'environnement
2024-01-29 14:49:38 +01:00
2024-01-25 09:01:48 +01:00
```
make create-cluster
2024-03-07 15:39:20 +01:00
skaffold dev --cleanup=false
2024-01-25 09:01:48 +01:00
```
2024-01-29 14:49:38 +01:00
2024-03-07 15:39:20 +01:00
#### Préparer les secrets
Editer le fichier `kustomization/base/tekton/secret/secret.yaml` avec les identifiants git
2024-01-29 14:49:38 +01:00
```
make ssh-secret
make docker-secret
```
### Lancement d'un pipeline
2024-03-07 15:39:20 +01:00
```
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
```
Pour installer le cli tekton : [Tekton CLI](https://tekton.dev/docs/cli/#installation)
### 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
```
Accéder au dashboard : http://localhost:9097